Welcome to Endalia HR API

Please sign in to access all documentation.
Sign in

POST /auth/connect/token
Content-Type: application/x-www-form-urlencoded
grant_type=client_credentials&client_id=client_id_required&client_secret=client_secret_required

{
"access_token": "access_token_to_use",
"expires_in": "3600",
"token_type": "Bearer",
"scope": "scope"
}

API access and authorization

To access the Endalia API, a key authentication process is used. A client_id and a client_secret are required in order to make API requests.

Once the client has these keys available, he/she must make a request to our Authentication API, as shown in the previous example.

From this call, the access token will be available in order to make calls to the API's included in the subscription.

API organization request example

Once the access token is available, calls to APIs with active suscriptions can be made. In this particular case, a call example to Organization request is displayed to return the provinces data in the system.

GET /organization/api/outbound/v1/parameters/provinces HTTP/1.1
Host: api.endaliahr.com
Authorization: Bearer yourAccessToken