Mobile Application Groups

Get Mobile Application Groups

get

Get all Mobile Application Groups

Path parameters
configstringRequired
Responses
200
Mobile Application Groups retrieved successfully
application/json
get
GET /api/v4.0/conf/{config}/mobile-application-groups HTTP/1.1
Host: 
Accept: */*
{
  "total": 1,
  "items": []
}

Get Mobile Application Group

get

Get a Mobile Application Group from the specified identifier

Path parameters
configstringRequired
entry_idstringRequired
Responses
200
Mobile Application Group retrieved successfully
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"
    }
  ]
}

Modify Mobile Application Group

put

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
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 Mobile Application Group

post

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
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 Mobile Application Group

delete

Delete an individual Mobile Applicaions Group from the specified configuration

Path parameters
configstringRequired
entry_idstringRequired
Responses
200
Mobile Application Group deleted successfully
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?