API Authentication
To access the API, you must authenticate your requests using an API Key. This API Key acts as a unique identifier and security token for your application.
How to Obtain Your API Key
- Register: You must first register an account on https://itispay.com.
- Access Dashboard: After successful registration, log in to your account. Your API Key will be accessible through your account dashboard.
How to Use Your API Key
The API Key must be provided in the header of your API requests.
- Header Name:
Api-key
- Header Value Format:
Api-key: YOUR_API_KEY
ReplaceYOUR_API_KEY
with the actual API Key obtained from your dashboard.
Example Request with API Key
Here's an example of how to include your API Key in a cURL request:
curl -X GET \
https://api.itispay.com/api/v1/invoices \
-H "Api-key: YOUR_API_KEY"
Ensure that your API Key is kept confidential and is not exposed in client-side code or public repositories.
Updated 18 days ago