settings/ios-seed-id
The iOS bundle seed ID.
GET
Gets the bundle seed ID currently used to sign apps.
Example request
Request
CODE
curl -b c.txt -c c.txt -X GET https://bc.qwe.com/mocana-app-control/rest/settings/ios-seed-id
Response
CODE
{
"message": "",
"settings": [{
"code": "OPT_CODE_IOS_SEED_ID",
"string_data": "ADWWGH56NM"
}],
"status": "OK"
}
POST
Sets the bundle seed ID used when signing secured apps.
Parameters
Parameter | Description |
---|---|
iosseedid | Required. The bundle seed ID you want to use, a 10-character string generated by Apple, usually identical to the Apple team ID. |
Example request
Request
CODE
curl -b c.txt -c c.txt -X POST https://bc.qwe.com/mocana-app-control/rest/settings/ios-seed-id \
-d iosseedid="ADWWGH56NM"
Response
CODE
{
"message": "",
"settings": [{
"code": "OPT_CODE_IOS_SEED_ID",
"string_data": "ADWWGH56NM"
}],
"status": "OK"
}
DELETE
Clears the bundle seed ID used when signing secured apps.
Example request
Request
CODE
curl -b c.txt -c c.txt -X DELETE https://bc.qwe.com/mocana-app-control/rest/settings/ios-seed-id
Response
CODE
{
"message": "",
"settings": [],
"status": "OK"
}