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

Update Organization Auth Code

Request

Updates an authentication code for the specified organization.

Security
ApiKeyAuth
Path
orgIdstringrequired

Path parameter: orgId

authCodeIdstringrequired

Path parameter: authCodeId

Bodyapplication/jsonrequired

Request payload for auth-code PUT.

client_idstringrequired

Client id of put /organization/{orgid}/update/auth-code/{authcodeid} request.

client_secretstringrequired

Client secret of put /organization/{orgid}/update/auth-code/{authcodeid} request.

curl -i -X PUT \
  'https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/organization/{orgId}/update/auth-code/{authCodeId}' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -d '{
    "client_id": "dshfosdhfg",
    "client_secret": "sdfgsdgds"
  }'

Responses

Auth code updated 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": "Update Organization Auth Code" }

Delete Organization User

Request

Deletes a specific user from an organization.

Security
ApiKeyAuth
Path
orgIdstringrequired

Path parameter: orgId

userIdstringrequired

Path parameter: userId

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

Responses

User 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 User" }

Delete Organization Auth Code

Request

Delete specific organization auth code

Security
ApiKeyAuth
Path
auth_code_idintegerrequired

ID of the auth code

Example: 3
org_idintegerrequired

Organization ID

Example: 32
curl -i -X DELETE \
  https://api-docs.ivalt.com/_mock/products/admin-portal/admin_apis/organization/32/delete/auth-code/3 \
  -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" }