mobile-app-controller
Save Or update Mobile app (saveMobileApp)
Create or update the Mobile app. When creating mobile app, platform generates Mobile App Id as time-based UUID. The newly created Mobile App Id will be present in the response. Specify existing Mobile App Id to update the mobile app. Referencing non-existing Mobile App Id will cause 'Not Found' error.
The pair of mobile app package name and platform type is unique for entire platform setup.
Available for users with 'SYS_ADMIN' or 'TENANT_ADMIN' authority.
post/api/mobile/app
Request body
Example request
{
"id": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "DEVICE"
},
"createdTime": 1746028547220,
"tenantId": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "TENANT"
},
"name": "my.mobile.app"
}Response
OK
Example response
{
"id": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "DEVICE"
},
"createdTime": 1746028547220,
"tenantId": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "TENANT"
},
"name": "my.mobile.app"
}