Developer Portal
API Reference
Developer Portal API Reference
The PALAP developer portal API offers tools to create, edit, and manage resources. The documentation for this API is structured to help developers integrate and understand the functionality.
- The API offers a secure RESTful interface and uses JSON over HTTPS.
It supports standard HTTP and JSON - Access to the API is limited to the developers with an assigned token.
Register on our User Portal to acquire a valid token. - The API documentation here follows OpenAPI 3.0 format.
Resources:
User API
GET /api/users GET
Get user details by ID
Query Parameters
- user_id
- string - User ID
Example request
curl --location ' https://api.developerpalap.com/api/v1/users'
POST /api/v1/users/ POST
Create new user
Parameters:
- name: string
- email: string
curl https://api.developerpalap.com/api/v1/users -H \ -X POST \ -H "Content-Type: application/json" \ -d '{"name":"Alice","email":"alice@example.com"}'
GET /user/{id}
GET
Retrieve user with specific ID
Parameters
id:
string
User ID
required
curl -X GET
-H "Authorization: Bearer $TOKEN"
id:
string
User ID
required