Authentication

Every API request should incorporate an 'Authorization' header, adhering to the following format: Bearer [AUTH_TOKEN].

Get your Authentication Token

In order to obtain an authorization token you'll need an API key. You can generate an API key from settings / integrations / API panel.

API keys persist indefinitely unless explicitly invalidated. However, please be aware that Authorization tokens have a 24-hour expiration period from their creation. Additionally, we may deactivate an authorization token without prior notice for security reasons.

To acquire an authorization token using your API key, submit a POST request following the instructions provided below.

Get an Authorization Token

POST https://api.patientsonboard.com/app/api/auth/token

Request Body

Name
Type
Description

api-key*

String

API Key From Dashboard

{
    status : 200, 
    data : {
        token : [AUTH_TOKEN]
    }
}
Leads

Last updated