Skip to content

Authenticating API Requests

The Konexus Platform API utilizes Bearer Tokens to authorize every request made to the API. This is accomplished by including the Bearer token in the Authorization Request Header field in each request.

Example HTTP/1.1 Request
GET /api/v2/settings/subscriptions HTTP/1.1
Host: admin.alertsense.com
Accept: application/json
Authorization: Bearer mF_9.B5f-4.1JqM
{
    "totalItemCount": 0,
    "pageCount": 1,
    "page": 1,
    "pageSize": 25,
    "items": [        
    ],
    "status": {
        "isSuccess": true,
        "errorCode": "None",
        "validationFailures": [],
        "messages": []
    },
    "hasErrors": false,
    "isValid": true
}

Whats next?

Next: Sending Alerts