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

Create Pending User

Request

Move a user into pending state for an organization

Security
ApiKeyAuth
Path
org_idintegerrequired

Organization ID

Example: 60
user_idintegerrequired

User ID

Example: 561
Bodyapplication/json

Request payload for pending POST.

object

POST /organization/{org_id}/user/{user_id}/pending request definition.

curl -i -X POST \
  https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/organization/60/user/561/pending \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -d '{}'

Responses

Successful operation

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": "Operation completed successfully" }

Get Pending Users

Request

Retrieve all pending users of an organization

Security
ApiKeyAuth
Path
org_idintegerrequired

Organization ID

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

Responses

Successful operation

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": "Operation completed successfully" }

Get All Geo Fencing of Organization

Request

Retrieve all geo fences for the organization

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/geo-fences \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Geo fences 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 Geo Fencing of Organization" }