Returns all transaction contact types the authenticated user is entitled to see. A user can see Global, Association, Office, and Personal level types, but can only PATCH/DELETE their own.
GET
/v2/transactions/contacts/types
curl \
--request GET 'https://api.pre.transactiondesk.com/v2/transactions/contacts/types' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": "3820856a-faef-477d-8d6a-8a8e25fc9522",
"name": "Listing Agent",
"ownerId": "5ec37bc1-9f55-4fe2-b9c4-1072f9954312",
"dateCreated": "2020-04-14T15:54:53.207",
"lastModified": "2020-04-14T15:54:53.207"
}
]
Response examples (401)
{
"code": 401,
"message": "Unauthorized. The user is not authenticated.",
"details": []
}