API Reference

Learn how to access UNLOQ end points

POST /groups

Create a new group

POST https://api-authenticator.iwelcome.com/v1/groups
Headers:
   Authorization: Bearer {your application API Key}
   Content-Type: application/json
Body parameters
  • name (string) - Required. The name of the new group.
  • description (string) - Optional. The description of the new group.
  • is_default (boolean) - Optional. Default is false.
Result format (200 OK)
{
  "type": "api.application.group.create",
  "result": {
    "id": "123456",
    "name": "My new group",
    "description": "This text is actually the description for a new group. Boring",
    "is_default": true,
    "created_at": "2016-11-21T11:38:28.000Z",
    "updated_at": "2016-11-21T11:38:28.000Z"
  }
}
      

Have a question? You can always send us an email at support@unloq.io, or contact us on chat.

For security related concerns, please visit our Security page.