IAM System API Documentation
Overview:
The IAM System API allows you to manage client dashboard users, including creating, updating, and deleting users with specific permissions and roles. Authentication is done using Basic Auth with API_KEY
and API_SECRET
.
Endpoints:
1. Create Client Dashboard User
Endpoint:POST
{{BASE_URL}}v2/client/multi-user
Description: Creates a new user with a specified email, password, role, and permissions.
All endpoints require Basic Authentication with the following headers:
Headers
Content-Type
application/json
Authorization
Basic <Base64Encoded(API_KEY:API_SECRET)>
Request Body
Response
2. Update Client Dashboard User Details
Endpoint:PATCH
{{BASE_URL}}v2/client/multi-user/{userId}
Description: Updates an existing user's details, including email, password, role, and permissions.
All endpoints require Basic Authentication with the following headers:
Headers
Content-Type
application/json
Authorization
Basic <Base64Encoded(API_KEY:API_SECRET)>
Request Body: Similar to Create User.
Response
Last updated