v1
latestOpenAPI 3.0.32026-07-24148824715.6 KBCases
Transition a case to a stage
This endpoint transitions a case to a new stage.
Note:
-
case_state is deprecated. Please use case_stage instead.
-
For those already integrated using case_state, if any new case stages are added the case state response for these will be returned as USER_DEFINED
You need the "Update cases" permission to use this endpoint.
post/v2/cases/{case_identifier}/transition
Path parameters
case_identifierstring uuid required
The unique identifier of the case.
Request body
Example request
{
"note": "Case accepted after confirmation from user.",
"state": "ONBOARDING_POSITIVE_END_STATE"
}Response
OK
Example response
{
"last_user_state": "ONBOARDING_POSITIVE_END_STATE",
"state": "ONBOARDING_POSITIVE_END_STATE"
}