The hostname for the iOS app-signing server.

GET

Returns the hostname for the iOS signing server.

Example request

Request

curl -v -L -b c.txt -c c.txt -X GET \
  http://bc.qwe.com/mocana-app-control/rest/settings/osx-signing-hostname
CODE

Response

{
  "message": "",
  "settings": [{
    "code": "OPT_CODE_OSX_SIGNING_HOSTNAME",
    "string_data": "10.11.12.13"
  }],
  "status": "OK"
}
CODE

POST

Sets the hostname for the iOS signing server.

Parameters

ParameterDescription
osx_signing_hostname

Required. The hostname or IP address of the iOS signing server.

Example request

Request

curl -v -L -b c.txt -c c.txt -X POST http://bc.qwe.com/mocana-app-control/rest/settings/osx-signing-hostname \
  -d osx_signing_hostname="signingHostname"
CODE

Response

{
  "message": "",
  "settings": [{
    "code": "OPT_CODE_OSX_SIGNING_HOSTNAME",
    "string_data": "signingHostname"
  }],
  "status": "OK"
}
CODE