The password for the iOS app-signing server.

GET

Returns the password for the iOS signing server in plain text.

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-password
CODE

Response

{
  "message": "",
  "settings": [{
    "code": "OPT_CODE_OSX_SIGNING_PASSWORD",
    "string_data": "Qwerty1@"
  }],
  "status": "OK"
}
CODE

POST

Sets the password for the iOS signing server.

Parameters

ParameterDescription
 osx_signing_password

Supply the password for the signing user (set with settings/osx-signing-username) to authenticate to 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-password 
  -d osx_signing_password="signingPassword"
CODE

Response

{
  "message": "",
  "settings": [{
    "code": "OPT_CODE_OSX_SIGNING_PASSWORD",
    "string_data": "signingPassword"
  }],
  "status": "OK"
}
CODE