API Reference

Learn how to access UNLOQ end points

GET /api-keys

Returns a list with all the api-keys for the given application.

GET https://api-authenticator.iwelcome.com/v1/api-keys
Headers:
   Authorization: Bearer {your application API Key}
   Content-Type: application/json
Result format (200 OK)
{
  "type": "api.application.apiKey.find",
  "meta": {
    "total_count": 2,
    "page_count": 1,
    "current_count": 2,
    "current_page": 1
  },
  "result": [
    {
      "id": "12345abcde",
      "public_key": "live_abcd",
      "scopes": [
        "application.all"
      ],
      "organization_id": "1234",
      "has_logging": false,
      "created_at": "2016-10-25T08:31:33.000Z",
      "environment": "live",
      "entity_type": "APPLICATION",
      "entity_id": "1234",
      "creator_id": "5678"
    },
    {
      "id": "123456abcdef",
      "public_key": "live_abcdefgh",
      "scopes": [
        "application.all"
      ],
      "organization_id": "1",
      "has_logging": false,
      "created_at": "2016-11-10T12:46:55.000Z",
      "environment": "live",
      "entity_type": "APPLICATION",
      "entity_id": "2345",
      "creator_id": "5678"
    }
  ]
}
      

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.