Updates part or all of a specific transaction file.
PATCH
/v2/transactions/{id}
curl \
--request PATCH 'https://api.pre.transactiondesk.com/v2/transactions/{id}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"string","statusId":"string","typeId":"string"}'
Request examples
{
"name": "string",
"statusId": "string",
"typeId": "string"
}
Response examples (400)
{
"code": 400,
"message": "Request was not valid.",
"details": [
"string"
]
}
Response examples (401)
{
"code": 401,
"message": "Unauthorized. The user is not authenticated.",
"details": []
}
Response examples (404)
{
"code": 404,
"message": "Item not found.",
"details": []
}