settings/osx-signing-hostname
The hostname for the iOS app-signing server.
GET
Returns the hostname for the iOS signing server.
Example request
Request
CODE
curl -v -L -b c.txt -c c.txt -X GET \
http://bc.qwe.com/mocana-app-control/rest/settings/osx-signing-hostname
Response
CODE
{
"message": "",
"settings": [{
"code": "OPT_CODE_OSX_SIGNING_HOSTNAME",
"string_data": "10.11.12.13"
}],
"status": "OK"
}
POST
Sets the hostname for the iOS signing server.
Parameters
Parameter | Description |
---|---|
osx_signing_hostname | Required. The hostname or IP address of the iOS signing server. |
Example request
Request
CODE
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"
Response
CODE
{
"message": "",
"settings": [{
"code": "OPT_CODE_OSX_SIGNING_HOSTNAME",
"string_data": "signingHostname"
}],
"status": "OK"
}