This document provides an overview of the API endpoints available in the developer portal. For more detailed information, please refer to the API Documentation.

Endpoints

  • GET /users - Retrieves a list of users.
  • POST /users - Creates a new user.
  • GET /users/{id} - Retrieves information about a specific user.

Usage

To retrieve a list of users, you can make a GET request to /users. For example:

GET /users

To create a new user, you can make a POST request to /users with the user details in the request body. For example:

POST /users
Content-Type: application/json

{
  "name": "John Doe",
  "email": "john.doe@example.com"
}

Image

Example Image

For more information on using the API, please visit the Developer Portal.