Authentication
To initiate use of the API, the first step is to acquire an API Key from Depay. This key uniquely identifies and grants you access to our services. After receiving your API Key, you must then obtain a JWT (JSON Web Token), which is essential for authenticating and authorizing your subsequent interactions with the API. This process ensures that access is both secure and tailored to your specific needs.
For example
Logs user into the system
GET
https://api.depay.us/auth/token
Returns a Bearer Token needed to authenticate along the API Endpoints.
Headers
x-api-key*
String
DEPAY-6b262934b78d849dc9cfd114c4c44029563cb972432b5dde1ef4494f63cb97243
The returned Bearer Token is required for authentication across all API endpoints. It should be included in the Authorization header of each request.
For example:
Last updated