The POST Resolution Code Incident Master API creates a new Resolution Code master record in the Incident Management (IM) module. Authorized administrators, integrations, and automation tools can create Resolution Code records without using the application UI.
Endpoint
POST /API/v1/Master/IM/ResolutionCode
Path Details
Path Value | Description |
|---|---|
| Module code for Incident Management. |
| Master entity used to create the new record. |
Note: Before creating Resolution Code record, system retrieves its metadata to review required fields, supported fields, payload structure, constraints, and applicable endpoints.
GET /API/v1/Master/IM/ResolutionCode/metadata?sections=create.
Sample Metadata Request
curl --location 'https://<host>/API/v1/Master/IM/ResolutionCode/metadata?sections=create' \
--request GET \
--header 'Accept: application/json' \
--header 'X-Api-Key: <API_KEY>'
Request Headers
Header | Value | Required | Description |
|---|---|---|---|
|
| Yes | Specifies the expected response format. |
|
| Yes | Specifies that the request body is in JSON format. |
|
| Yes | API key used to authenticate the request. |
Request Body Fields
Field | Data Type | Required | Description |
|---|---|---|---|
| Boolean | No | Indicates whether the Resolution Code record is active. |
| String | No | Instance or tenant associated with the Resolution Code record. |
| String | Yes | Display name or text value of the Resolution Code record. |
Sample Payload
{
"Active": true,
"Instance": "Info",
"Text": "Sample Resolution Code Name"
}
Sample Payload Field Details
Field Name | Sample Value | Data Type | Description |
|---|---|---|---|
Active |
| Boolean | Indicates whether the Resolution Code record is active and available for use. |
Instance |
| String | Specifies the application instance associated with the Resolution Code record. |
Text |
| String | Specifies the display name of the Resolution Code record. |
Sample Payload Explanation
Attribute | Value | Explanation |
|---|---|---|
Active Status |
| Creates the Resolution Code as an active record that is available for use. |
Application Instance |
| Associates the Resolution Code record with the specified application instance. |
Resolution Code Name |
| Sets the display name of the new Resolution Code record. |
Sample Request
curl --location 'https://<host>/API/v1/Master/IM/ResolutionCode' \
--request POST \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <API_KEY>' \
--data-raw '{
"Active": true,
"Instance": "Info",
"Text": "Sample Resolution Code Name"
}'
Sample Request Details
Component | Value | Description |
|---|---|---|
HTTP Method |
| Creates a new Resolution Code master record. |
Endpoint URL |
| API endpoint used to create a Resolution Code record. |
Host |
| Base URL of the target environment, such as Development, Test, or Production. |
API Version |
| Identifies Version 1 of the API. |
Resource Group |
| Identifies the Master Data API resource group. |
Module |
| Identifies the Incident Management module. |
Master Name |
| Identifies the Resolution Code master entity. |
Accept Header |
| Indicates that the client expects the response in JSON format. |
Content-Type Header |
| Indicates that the request body contains JSON data. |
X-Api-Key Header |
| API key used to authenticate and approve the request. |
Request Body | JSON payload | Contains the values used to create the Resolution Code record. |
Request Body Details
Field Name | Sample Value | Data Type | Required | Description |
|---|---|---|---|---|
Active |
| Boolean | Yes | Creates the Resolution Code as an active record that is available for use. |
Instance |
| String | Yes | Associates the Resolution Code with the specified application instance. |
Text |
| String | Yes | Sets the display name of the Resolution Code record. |
Sample Request Explanation
Attribute | Submitted Value | Result |
|---|---|---|
HTTP Operation |
| Requests the creation of a new Resolution Code record. |
Resolution Code Name |
| Creates the Resolution Code with the specified display name. |
Active Status |
| Makes the new Resolution Code active and available for use. |
Application Instance |
| Associates the new Resolution Code with the specified application instance. |
The request creates an active Resolution Code named Sample Resolution Code Name and associates the record with the specified application instance.
Sample Success Response
HTTP 201 Created
{
"message": "Master record created successfully.",
"data": {
"success": true,
"recordId": 17,
"displayName": "ResolutionCode",
"moduleCode": "IM",
"operation": "INSERT",
"rowsAffected": 1
},
"executionTime": 0.0553389
}
A successful request creates the Resolution Code record and returns the generated record identifier and execution details.
Sample Success Response Field Details
Field Name | Sample Value | Data Type | Description |
|---|---|---|---|
message |
| String | Confirms the API created the Resolution Code record successfully. |
data | Response object | Object | Contains details about the completed create operation. |
data.success |
| Boolean | Indicates whether the Resolution Code create operation succeeded. |
data.recordId |
| Integer | Unique identifier generated for the newly created Resolution Code record. |
data.displayName |
| String | Identifies the created master entity. |
data.moduleCode |
| String | Identifies the Incident Management module associated with the new record. |
data.operation |
| String | Indicates that the API performed an insert operation. |
data.rowsAffected |
| Integer | Indicates the number of Resolution Code records created by the request. |
executionTime |
| Number | Indicates the time taken to process the request, in seconds. |
Sample Success Response Explanation
Response Attribute | Returned Value | Meaning |
|---|---|---|
HTTP Status |
| Indicates that the API successfully created a new resource. |
Response Message |
| Confirms that the API successfully created the Resolution Code record. |
Operation Status |
| Confirms that the API successfully created the Resolution Code record. |
Generated Record ID |
| Identifies the newly created Resolution Code record. |
Master Entity |
| Confirms that the created record belongs to the Resolution Code master. |
Module |
| Confirms that the record belongs to the Incident Management module. |
Operation |
| Confirms that the API performed a create operation. |
Rows Affected |
| Confirms that the request created one Resolution Code record. |
Execution Time |
| Reports the time taken to process the create request. |
A successful request returns HTTP 201 Created. The response confirms that the API created a new Resolution Code record, generated record ID 17, and affected one record.
Error Responses
400 Bad Request
Returned when the payload is invalid, a required field is missing, or a supplied value fails validation.
{
"message": "Invalid request payload.",
"errorCode": 400,
"details": "One or more fields failed validation."
}
401 Unauthorized
Returned when valid API credentials are not provided or have expired.
{
"message": "Unauthorized access.",
"errorCode": 401,
"details": "Valid API credentials are required."
}
403 Forbidden
Returned when the authenticated client does not have permission to create Resolution Code records.
{
"message": "You do not have permission to create master records.",
"errorCode": 403,
"details": "The authenticated user lacks the required privileges to perform this operation."
}
404 Not Found
Returned when the Resolution Code master entity does not exist or the endpoint URL is invalid.
{
"message": "Master entity not found.",
"errorCode": 404,
"details": "The requested master entity or endpoint does not exist."
}