{{apiUrl}}/api/v1/category/caseType/{{caseTypeIdentifier}}
Headers
To authenticate the API request, you need to provide the Vansah Connect Token that is generated from the Jira workspace's Vansah configuration page.
Authorization | {{vansahConnectToken}}
|
Request PATH Parameter
caseTypeIdentifier (String, Required):
Description: The unique identifier of the case type to be updated.
Example:
"
c7e055f6-f32f-11ef-baf9-5a0ced9d1480"
Request Body Parameters
project (Object, Required):
Description: Contains essential details related to the project.
key (String, Required): Jira Project Key. This is required for connect API calls.
Example:
"DEMO"
Example Request Payload
{
"project" :{
"key":"DEMO" //Required: Project Key is required when using Vansah Connect API Token
}
}
Response Body
success (Boolean, Required):
Description: Indicates whether the request was successful.
Example:
true
message (String, Required):
Description: A message providing details about the outcome of the request.
Example:
"Case Type is Removed successfully"
data (Object, Required):
Description: Contains the details of the removed case type.
identifier (String, Required):
Description: The unique identifier for the removed case type.
Example:
"c7e055f6-f32f-11ef-baf9-5a0ced9d1480"
name (String, Required):
Description: The name of the removed case type.
Example:
"Integration1"
Example Response Body
{
"success": true,
"message": "Case Type is Removed successfully",
"data": {
"identifier": "c7e055f6-f32f-11ef-baf9-5a0ced9d1480",
"name": "Integration1"
}
}