The "Get the List of Users" API allows you to retrieve the list of users from your Aloware account when called with the unique API token. This is useful for further automation in Aloware’s APIs and Integration.
This documentation outlines the required fields, examples, and endpoints to successfully utilize the Aloware User List API.
Endpoint
This endpoint allows you to ger a list of users.
GET /api/v1/webhook/users
Getting the List of Users
To get the list of users, you need the following required fields:
api_token | Your Aloware account API token. |
Example GET URL
https://app.aloware.com/api/v1/webhook/users?api_token=[API_TOKEN]
Response
HTTP 200 - a successful response will return the list of users.
Example Request:
curl --location --request GET 'https://app.aloware.com/api/v1/webhook/users?api_token=[API_TOKEN]'
Make sure to replace '[API_TOKEN]' with your actual Aloware API token.