Authentication

The Authentication method is used to obtain an access token that is required to access other methods of the RiderX RESTful API. You need to provide your credentials, including your API key and API secret, to obtain the access token. Register Here! to get your API Key and Api secret for the test server. This access token will be used for subsequent requests to the API. To use this method, send a POST request to the following endpoint:

Environment Host Endpoint
Test
https://test.xpl.ph/Api/
API/Auth/Authenticate
Live
https://api.riderx.team/v2/
API/Auth/Authenticate

Request Body Parameters

Parameters Type Required Description
client_ID
string
Yes
The client identifier issued to the client to obtain access token that will be used for API Request
client_Secret
string
Yes
The client identifier issued to the client to obtain access token that will be used for API Request

Request

curl --location --request POST 'https://test.xpl.ph/Api/API/Auth/Authenticate' --header 'Authorization;' --header 'Content-Type: application/json' --data-raw '{ "client_ID": "<CLIENT_ID>", "client_Secret": "<CLIENT_SECRET_KEY>" }'

Response Body Parameters

Parameters Type Description
Authentication_Token
string
The access token issued by Rider X Open API
Expiration_Date
datetime
Exact date and time when the token will expire

Response

{ "Authentication_Token": "<AUTHENTICATION_TOKEN>", "expires_in": "2023-04-06T14:58:18.1647008+08:00" }