Last updated 1 month ago
Was this helpful?
Get all Mobile Application Groups
curl -L \ --url '/api/v4.0/conf/{config}/mobile-application-groups'
{ "total": 1, "items": [] }
Get a Mobile Application Group from the specified identifier
curl -L \ --url '/api/v4.0/conf/{config}/mobile-application-groups/{entry_id}'
{ "id": "text", "name": "text", "description": "text", "uid_header": "text", "grace": "text", "active_config": [], "signatures": [ { "active": true, "hash": "text", "name": "text" } ] }
Delete an individual Mobile Applicaions Group from the specified configuration
curl -L \ --request DELETE \ --url '/api/v4.0/conf/{config}/mobile-application-groups/{entry_id}'
{ "message": "Successfully deleted entry" }
Update an individual Mobile Application Group within a configuration
curl -L \ --request PUT \ --url '/api/v4.0/conf/{config}/mobile-application-groups/{entry_id}' \ --header 'Content-Type: application/json' \ --data '{ "id": "text", "name": "text", "description": "text", "uid_header": "text", "grace": "text", "active_config": [], "signatures": [ { "active": true, "hash": "text", "name": "text" } ] }'
{ "message": "Successfully updated entry" }
Create an individual Mobile Application Group within a configuration
^[A-Za-z0-9\-\_]*$
curl -L \ --request POST \ --url '/api/v4.0/conf/{config}/mobile-application-groups/{entry_id}' \ --header 'Content-Type: application/json' \ --data '{ "id": "text", "name": "text", "description": "text", "uid_header": "text", "grace": "text", "active_config": [], "signatures": [ { "active": true, "hash": "text", "name": "text" } ] }'
{ "message": "Successfully created entry" }