[ad_1]
I attempted making a provisioning profile via App Retailer Join API. Right here is the physique with obfuscated knowledge that I despatched to POST v1/profiles
.
{
"knowledge": {
"relationships": {
"certificates": {
"knowledge": [
{
"id": "BD615443",
"type": "certificates"
} ]
},
"bundleId": {
"knowledge": {
"id": "bundle.identifier.app",
"kind": "bundleIds"
}
}
},
"attributes": {
"profileType": "IOS_APP_STORE",
"title": "SO Query Profile"
},
"kind": "profiles"
}
}
I cross verified that every one the above provided knowledge was right. However I ended up receiving an error response with error description – There isn't a App ID with ID 'com.appmysite.iaptest' on this group.
I can see that I’ve not made a mistake whereas copying and pasting the bundle ID from developer.apple.com. I’ve additionally tried the app ID (teamID.bundle.identifier.app) and in addition the app Apple ID (1234567) for this API subject and nothing appears to work. Furthermore, I’m able to create a provisioning profile utilizing the identical certificates and bundle ID via App Retailer Join portal. There’s little to no documentation and on-line sources concerning this, so what precisely does Apple anticipate me to ship as bundleId
?
[ad_2]