curl --request PATCH \
--url https://api.platform.dakota.xyz/exceptions/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"cleared": true
}
'{
"code": "invalid_request",
"message": "The request was invalid. Please check your input and try again.",
"details": {
"field": "amount",
"issue": "must be greater than 0"
}
}curl --request PATCH \
--url https://api.platform.dakota.xyz/exceptions/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"cleared": true
}
'{
"code": "invalid_request",
"message": "The request was invalid. Please check your input and try again.",
"details": {
"field": "amount",
"issue": "must be greater than 0"
}
}Unique identifier of the exception
Request to update an exception
Whether to mark the exception as cleared (true) or uncleared (false)
true
Exception updated successfully