Authentication

Modified on Fri, 20 Dec, 2024 at 2:22 PM

Authentication for Access Token

To access our REST-based API and obtain an access token for authentication, follow these steps:


Endpoint: POST https://api.callation.com.au/api/v1/authenticate


Example Request Body (JSON):

{
    "email": "demo@callation.com",
    "password": "letmein1213",
    "user_type": "user"
}
  1. Endpoint Description: The API endpoint for authentication is https://api.callation.com.au/api/v1/authenticate. This is the entry point to generate an access token required for subsequent API calls.

  2. Request Body Parameters:

    • email: Replace with the email associated with your account.
    • password: Use your account password for authentication.
    • user_type: Specify the user type (e.g., "user").

  3. Authentication Process: Submit a POST request to the specified URL with a JSON body containing your credentials (email, password, and user type).

  4. Response: Upon successful authentication, the API will respond with an access token in the response body. This access token serves as an authorization token for accessing protected resources within the API.

Remember to securely store and utilize this access token in the authorization headers of subsequent API requests to authenticate and access the desired resources.

For any issues or queries regarding the authentication process or handling the access token, refer to our documentation or reach out to our support channels for assistance.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article