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

Delete Organization

Request

Deletes an organization by its ID.

Security
ApiKeyAuth
Path
org_idstringrequired

Path parameter: id

curl -i -X DELETE \
  'https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/organization/{org_id}/delete' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Organization deleted 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": "Delete Organization" }

Get All Users of Organization

Request

Fetches all users associated with an organization.

Security
ApiKeyAuth
Path
org_idstringrequired

Path parameter: id

curl -i -X GET \
  'https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/organization/{org_id}/users' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

List of users retrieved 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 All Users of Organization" }

Get Specific User of Organization

Request

Fetches details of a specific user within an organization.

Security
ApiKeyAuth
Path
orgIdstringrequired

Path parameter: orgId

userIdstringrequired

Path parameter: userId

curl -i -X GET \
  'https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/organization/{orgId}/user/{userId}' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

User details retrieved 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 Specific User of Organization" }