Cases
Update Case
This endpoint updates a cases
POST
/v1/cases
Bearer*
Body
id
string
This is the ID of the case to update.
Response
id
string
This is the id of the case
caseName
string
This is the name of the case
description
string
This is the description of the case
caseNumber
string
This is the number of the case
caseStatus
string
This is the status of the case
priority
string
This is the priority of the case
submitter
string
This is the submitter of the case
resolver
string
This is the resolver of the case
createdDate
string
This is the date the case was created
updatedDate
string
This is the date the case was updated
curl --location --request PUT 'https://api.stateset.com/v1/case' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": ""
}'
{
"data": {
"update_cases": {
"returning": [
{
"id": "0x0",
"caseName": "Case Name",
"caseNumber": "Case Number",
"description": "Case Description",
"caseStatus": "Case Status",
"priority": "Case Priority",
"submitter": "Submitter",
"resolver": "Resolver"
}
]
}
}
}
curl --location --request PUT 'https://api.stateset.com/v1/case' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": ""
}'
{
"data": {
"update_cases": {
"returning": [
{
"id": "0x0",
"caseName": "Case Name",
"caseNumber": "Case Number",
"description": "Case Description",
"caseStatus": "Case Status",
"priority": "Case Priority",
"submitter": "Submitter",
"resolver": "Resolver"
}
]
}
}
}