Mobile Application Groups
Get all Mobile Application Groups
Path parameters
configstringRequired
Responses
200
Mobile Application Groups retrieved successfully
application/json
400
Input Error
application/json
500
Internal Server Error
application/json
get
GET /api/v4.0/conf/{config}/mobile-application-groups HTTP/1.1
Host:
Accept: */*
{
"total": 1,
"items": []
}
Get a Mobile Application Group from the specified identifier
Path parameters
configstringRequired
entry_idstringRequired
Responses
200
Mobile Application Group retrieved successfully
application/json
400
Input Error
application/json
422
Validation Error
application/json
500
Internal Server Error
application/json
get
GET /api/v4.0/conf/{config}/mobile-application-groups/{entry_id} HTTP/1.1
Host:
Accept: */*
{
"id": "text",
"name": "text",
"description": "text",
"uid_header": "text",
"grace": "text",
"active_config": [],
"signatures": [
{
"active": true,
"hash": "text",
"name": "text"
}
]
}
Update an individual Mobile Application Group within a configuration
Path parameters
configstringRequired
entry_idstringRequired
Body
idstringOptional
namestringOptional
descriptionstringOptional
uid_headerstringOptional
gracestringOptional
Responses
200
Mobile Application Group updated successfully
application/json
400
Input Error
application/json
422
Validation Error
application/json
500
Internal Server Error
application/json
put
PUT /api/v4.0/conf/{config}/mobile-application-groups/{entry_id} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 161
{
"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
Path parameters
configstringRequired
entry_idstringRequiredPattern:
^[A-Za-z0-9\-\_]*$
Body
idstringOptional
namestringOptional
descriptionstringOptional
uid_headerstringOptional
gracestringOptional
Responses
201
Mobile Application Group created successfully
application/json
400
Input Error
application/json
422
Validation Error
application/json
500
Internal Server Error
application/json
post
POST /api/v4.0/conf/{config}/mobile-application-groups/{entry_id} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 161
{
"id": "text",
"name": "text",
"description": "text",
"uid_header": "text",
"grace": "text",
"active_config": [],
"signatures": [
{
"active": true,
"hash": "text",
"name": "text"
}
]
}
{
"message": "Successfully created entry"
}
Delete an individual Mobile Applicaions Group from the specified configuration
Path parameters
configstringRequired
entry_idstringRequired
Responses
200
Mobile Application Group deleted successfully
application/json
400
Bad Request
application/json
422
Validation Error
application/json
500
Internal Server Error
application/json
delete
DELETE /api/v4.0/conf/{config}/mobile-application-groups/{entry_id} HTTP/1.1
Host:
Accept: */*
{
"message": "Successfully deleted entry"
}
Last updated
Was this helpful?