GET
/prime/webui/emergencykey/details
Get emergency key details
Get emergency key details. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/emergencykey/details' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"EmergencyKey"
],
"summary": "Get emergency key details",
"responses": {
"200": {
"description": "Success",
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/EmergencyKeyDetailsResponse"
}
},
"application/json": {
58
"schema": {
"$ref": "#/components/schemas/EmergencyKeyDetailsResponse"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/EmergencyKeyDetailsResponse"
}
}
}
}
}
}
GET
/prime/webui/emergencykey/agentstatus
Get emergency key statuses
Get emergency key statuses. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/emergencykey/agentstatus' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"$ref":"#/components/schemas/EmergencyKeyGetAgentsRequest"}'
OpenAPI spec
"get": {
"tags": [
"EmergencyKey"
],
"summary": "Get emergency key statuses",
"requestBody": {
"description": "",
"content": {
"application/json -patch+json": {
"schema": {
"$ref": "#/components/schemas/EmergencyKeyGetAgentsRequest"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/EmergencyKeyGetAgentsRequest"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/EmergencyKeyGetAgentsRequest"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/EmergencyKeyGetAgentsRequest"
}
}
}
},
"responses": {
"200": {
"description": "Success",
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/EmergencyKeyAgentsStatusResponse"
}
},
"application/json": {
59
"schema": {
"$ref": "#/components/schemas/EmergencyKeyAgentsStatusResponse"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/EmergencyKeyAgentsStatusResponse"
}
}
}
}
}
}
POST
/prime/webui/emergencykey/exportagentstatuscsv
Export agents status csv
Export agents status csv. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/emergencykey/exportagentstatuscsv' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{}'
OpenAPI spec
"post": {
"tags": [
"EmergencyKey"
],
"summary": "Export agents status csv",
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"type": "object",
"nullable": true
}
},
"application/json": {
"schema": {
"type": "object",
"nullable": true
}
},
"text/json": {
"schema": {
"type": "object",
"nullable": true
}
},
"application/*+json": {
"schema": {
"type": "object",
"nullable": true
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
POST
/prime/webui/emergencykey/exportagentstatuspdf/exportpdf
Export agents status pdf
Export agents status pdf. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/emergencykey/exportagentstatuspdf/exportpdf' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{}'
OpenAPI spec
"post": {
"tags": [
"EmergencyKey"
],
"summary": "Export agents status pdf",
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"type": "object",
"nullable": true
}
},
"application/json": {
"schema": {
"type": "object",
"nullable": true
}
},
"text/json": {
"schema": {
"type": "object",
"nullable": true
}
},
"application/*+json": {
"schema": {
"type": "object",
"nullable": true
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}