The GET Urgency Incident Master API retrieves Urgency master data from the Incident Management (IM) module without using the application UI. The API response represents the Urgency records configured in the system.
The API supports the following operations:
Retrieve List of Urgency Master Records
This endpoint retrieves all Urgency master records configured in the Incident Management module. Administrators, integrations, and automation tools can use the endpoint for configuration review, validation, reporting, synchronization, and downstream processing.
Endpoint
GET /API/v1/Master/IM/Urgency
Component | Value | Description |
|---|---|---|
HTTP Method | GET | Retrieves data from the server. This is a read-only operation and does not create, update, or delete records. |
API | API | Stands for Application Programming Interface. It provides a standard way for applications to communicate with the system and exchange data. |
Version | v1 | Indicates Version 1 of the API. Versioning helps maintain compatibility when the API team introduces new versions. |
Resource Group | Master | Refers to the Master Data module, which contains reusable reference data such as Category(s), Priority(s), Status(s), and Urgency(s). |
Module | IM | Stands for Incident Management. It identifies that the requested master data belongs to the Incident Management module. |
Resource | Urgency | Specifies the Urgency master data resource to retrieve. Urgency indicates how quickly an Incident requires attention. |
Request Headers
{
"Accept": "application/json",
"X-Api-Key": "{API_KEY}"
}
Header | Value | Required | Description |
|---|---|---|---|
Accept |
| Yes | Requests the API to return the response in JSON format. |
X-Api-Key |
| Yes | API key used to authenticate and approve the caller. |
Sample Request
The following cURL request retrieves all Urgency master records. Replace {host} with the appropriate server address and {API_KEY} with a valid API key.
curl --location 'https://{host}/API/v1/Master/IM/Urgency' \
--request GET \
--header 'Accept: application/json' \
--header 'X-Api-Key: {API_KEY}'
Sample Response
The following response returns an array of Urgency master records. Each object represents one Urgency configured in the Incident Management module.
[
{
"Value": 1,
"Active": true,
"Text": "High",
"Is_Default": false,
"Sort_Order": 1,
"Instance": "Info",
"Instance_Text": "Info"
},
{
"Value": 2,
"Active": true,
"Text": "Medium",
"Is_Default": true,
"Sort_Order": 2,
"Instance": "Info",
"Instance_Text": "Info"
}
]
In this example, the API returns the Urgency values High and Medium. Medium set as the default Urgency. The Sort_Order values determine the configured display or processing sequence.
Note: The sample values are illustrative. Actual values depend on the Urgency records configured in the tenant.
Response Fields
Field | Type | Example Value | Description |
|---|---|---|---|
Value | Integer |
| Unique value or identifier of the Urgency record. |
Active | Boolean |
| Indicates whether the Urgency record is active and available for use. |
Text | String |
| Display name of the Urgency. |
Is_Default | Boolean |
| Indicates whether the system uses this record as the default Urgency. |
Sort_Order | Integer |
| Defines the configured display or processing order of the Urgency record. |
Instance | String or Integer |
| Identifier of the application instance associated with the Urgency. The returned data type depends on system configuration. |
Instance_Text | String |
| Display name of the application instance associated with the Urgency. |
Business Use Cases
Scenario | Resolution |
|---|---|
An integration needs valid Urgency values before creating or updating an Incident. | Retrieve the configured Urgency records and use the required Urgency |
An external system stores Urgency mappings for Incident synchronization. | Retrieve the latest Urgency records and synchronize them with the external system's mapping table. |
An automated process receives an Urgency name but requires its unique identifier. | Retrieve the Urgency master list, locate the record whose |
A scheduled integration must keep Urgency reference data current. | Call the API at scheduled intervals and compare the returned records with the Urgency data stored by the consuming system. Add, update, or deactivate mappings as required. |
An integration must verify an Urgency before submitting an Incident request. | Confirm that the Urgency exists and that |
An integration must identify the default Urgency. | Review |
A consuming application must display Urgency values in the configured sequence. | Sort the returned records by |
An integration migrates Incident data from another system. | Retrieve valid Urgency records and map source-system values to the corresponding identifiers before migrating Incident records. |
An integration supports many application instances. | Use |
Expected Result
Returns HTTP
200 OK.Returns all available Urgency master records configured for Incident Management.
Returns the identifier, active status, display name, default setting, sort order, and instance information for each Urgency.
Sample Expected Result
The API successfully retrieves the Urgency master records configured for Incident Management.
[
{
"Value": 1,
"Active": true,
"Text": "High",
"Is_Default": false,
"Sort_Order": 1,
"Instance": "Info",
"Instance_Text": "Info"
},
{
"Value": 2,
"Active": true,
"Text": "Medium",
"Is_Default": true,
"Sort_Order": 2,
"Instance": "Info",
"Instance_Text": "Info"
}
]
Retrieve Urgency Master Record Details
This endpoint retrieves the details of a specific Urgency master record by using its unique record ID.
Endpoint
GET /API/v1/Master/IM/Urgency/{recordId}
Component | Value | Description |
|---|---|---|
HTTP Method | GET | Retrieves data from the server. This is a read-only operation and does not create, update, or delete records. |
API | API | Stands for Application Programming Interface. It provides a standard way for applications to communicate with the system and exchange data. |
Version | v1 | Indicates Version 1 of the API. |
Resource Group | Master | Refers to the Master Data module. |
Module | IM | Identifies the Incident Management module. |
Resource | Urgency | Specifies the Urgency master data resource. |
Record Identifier |
| Unique identifier of the Urgency record. Replace the placeholder with an actual record ID, such as |
Path Parameter
Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
recordId | Integer or string | Yes | Unique identifier of the Urgency master record to retrieve. |
|
Request Headers
{
"Accept": "application/json",
"X-Api-Key": "{API_KEY}"
}
Header | Value | Required | Description |
|---|---|---|---|
Accept |
| Yes | Requests the API to return the response in JSON format. |
X-Api-Key |
| Yes | Provides the API key used to authenticate and approve the caller. |
Sample Request
The following request retrieves the Urgency master record with record ID 1. Replace 1 with the required record ID, {host} with the appropriate server address, and {API_KEY} with a valid API key.
curl --location '{host}/API/v1/Master/IM/Urgency/1' \
--request GET \
--header 'Accept: application/json' \
--header 'X-Api-Key: {API_KEY}'
Sample Response
The response returns the Urgency master record whose identifier matches the value specified in the request URL.
{
"Value": 1,
"Active": true,
"Text": "High",
"Is_Default": false,
"Sort_Order": 1,
"Instance": "Info",
"Instance_Text": "Info"
}
Note: The sample response is illustrative. The actual record-detail response may include other configuration fields.
Response Field Details
Field | Value | Description |
|---|---|---|
Value |
| Uniquely identifies the Urgency record. |
Active |
| Indicates that the Urgency is active and available for use. |
Text |
| Specifies the display name of the Urgency. |
Is_Default |
| Indicates that this record is not configured as the default Urgency. |
Sort_Order |
| Specifies the configured display or processing order of the Urgency. |
Instance |
| Identifies the application instance associated with the Urgency. |
Instance_Text |
| Provides the display name of the associated application instance. |
An integration can use these values to verify the Urgency configuration before using its identifier in another Incident Management API request.
Business Use Cases
Scenario | Resolution |
|---|---|
An external system receives an Incident containing an Urgency identifier. | Retrieve the specific Urgency record to get its name and configuration before processing or synchronizing the Incident. |
An integration must check an Urgency before creating or updating an Incident. | Retrieve the Urgency by |
A synchronization process detects that one Urgency record has changed. | Retrieve only the affected Urgency record and update its mapping without retrieving the complete master list. |
An imported Incident contains an existing Urgency mapping. | Retrieve the mapped Urgency record to confirm that the stored identifier still corresponds to the expected Urgency. |
An automated workflow must apply rules based on the default Urgency setting. | Retrieve the Urgency and review |
A consuming application must place a known Urgency in the correct sequence. | Retrieve the record and use |
A reporting system contains an Urgency identifier but not its descriptive name. | Retrieve the Urgency and use |
An Urgency mapping fails during Incident processing. | Retrieve the Urgency by |
An automated workflow must apply instance-specific rules. | Use |
Expected Result
Returns HTTP
200 OK.Returns the Urgency master record that matches the specified
recordId.Returns the identifier, active status, display name, default setting, sort order, and instance information.
Sample Expected Result
The API successfully retrieves the Urgency record with record ID 1.
{
"Value": 1,
"Active": true,
"Text": "High",
"Is_Default": false,
"Sort_Order": 1,
"Instance": "Info",
"Instance_Text": "Info"
}
Error Responses
401 Unauthorized
Returned when the request does not include a valid API key or the caller does not have authenticated access.
The following request does not include the required X-Api-Key header:
curl --location '{host}/API/v1/Master/IM/Urgency/' \
--request GET \
--header 'Accept: application/json' \
{
"message": "Unauthorized",
"errorCode": 401,
"details": "Valid API credentials are required."
}
404 Not Found
Returned when the requested Urgency record ID does not exist or the endpoint path is incorrect.
The following request attempts to retrieve an Urgency record with the record ID 9999:
curl --location '{host}/API/v1/Master/IM/Urgency/9999' \
--request GET \
--header 'Accept: application/json' \
--header 'X-Api-Key: {API_KEY}'
{
"message": "Record not found",
"errorCode": 404,
"details": "The requested Urgency record was not found."
}