Skip to content

Admin Panel APIs (1.0.0)

The Admin Panel APIs provide endpoints for managing organizations, users, roles, system configurations, and security features. They also support timestamp-based access controls and geo-fencing to enhance security and compliance.

Download OpenAPI description
Languages
Servers
Mock server
https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/
Production server
https://api.ivalt.com/admin/public/api/

Admin Panel Apis

Admin Panel APIs for organization, user, and role management. Includes system configurations, security controls, timestamps, and geo-fencing features.

Operations

Get Organization by Slug/Code

Request

Retrieve a Organization. in the Admin Panel Apis domain

Security
ApiKeyAuth
Path
user_idintegerrequired

User Id provided via path.

Example: 561
org_codestringrequired

Org Code provided via path.

Example: test
curl -i -X GET \
  https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/user/561/organizations/test \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Organization details fetched successfully

Bodyapplication/json
statusstringrequired

Outcome of the request. Always success for 2xx responses.

Value"success"
Example: "success"
messagestringrequired

Short description of the successful operation outcome.

Example: "Operation completed successfully"
Response
application/json
{ "status": "success", "message": "Get Organization by Slug/Code" }

Get Organization Auth Codes

Request

Retrieve a Get Org Auth Code. in the Admin Panel Apis domain

Security
ApiKeyAuth
Path
org_idintegerrequired

Org Id provided via path.

Example: 32
curl -i -X GET \
  https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/organization/32/get-org-auth-codes \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Organization authentication codes fetched successfully

Bodyapplication/json
statusstringrequired

Outcome of the request. Always success for 2xx responses.

Value"success"
Example: "success"
messagestringrequired

Short description of the successful operation outcome.

Example: "Operation completed successfully"
Response
application/json
{ "status": "success", "message": "Get Organization Auth Codes" }

List All Organizations

Request

Retrieve a list of Organizations. in the Admin Panel Apis domain

Security
ApiKeyAuth
curl -i -X GET \
  https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/organizations \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

List of organizations fetched successfully

Bodyapplication/json
statusstringrequired

Outcome of the request. Always success for 2xx responses.

Value"success"
Example: "success"
messagestringrequired

Short description of the successful operation outcome.

Example: "Operation completed successfully"
Response
application/json
{ "status": "success", "message": "List All Organizations" }