Returns a specific transaction status the authenticated user is entitled to see.
GET
/v2/transactions/statuses/{id}
curl \
--request GET 'https://api.pre.transactiondesk.com/v2/transactions/statuses/{id}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "ee349fd8-5842-420f-84a2-9b80b8d9632e",
"name": "Active",
"ownerId": "476ba212-d96d-49e5-82df-3f474d9e9188",
"dateCreated": "2008-03-02T04:26:50.607+00:00",
"lastModified": "2008-03-02T04:26:50.607+00:00"
}
Response examples (401)
{
"code": 401,
"message": "Unauthorized. The user is not authenticated.",
"details": []
}
Response examples (404)
{
"code": 404,
"message": "Item not found.",
"details": []
}