Returns a specific transaction type the authenticated user is entitled to see.
GET
/v2/transactions/types/{id}
curl \
--request GET 'https://api.pre.transactiondesk.com/v2/transactions/types/{id}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "8bd47056-64b5-41dd-ad97-53f6a7debe80",
"name": "Commercial Lease",
"ownerId": "476ba212-d96d-49e5-82df-3f474d9e9188",
"dateCreated": "2012-01-18T20:42:38.737",
"lastModified": "2012-01-18T20:42:38.737"
}
Response examples (401)
{
"code": 401,
"message": "Unauthorized. The user is not authenticated.",
"details": []
}
Response examples (404)
{
"code": 404,
"message": "Item not found.",
"details": []
}