Persons
Get a person
Retrieve the details of a single person (required scope contacts:persons:read)
get/v1/persons/{personId}
Path parameters
personIdstring uuid required
The unique identifier of the person
Headers
Customer-Idinteger required
The customer identifier
Response
OK
Example response
{
"id": "5514123",
"createdAt": "2022-11-29T16:50:16.0000000+00:00",
"contactId": 12345,
"title": "Mr",
"forename": "David",
"surname": "Smith",
"email": "dave.brown@example.com",
"mobile": "+447812 123112",
"landline": "+441312 112441",
"extension": "12",
"position": "Manager",
"department": "Customer service",
"customFields": [
{
"definitionId": 5514123,
"value": "Purple",
"definition": {
"caption": "Favourite colour",
"type": "boolean",
"listOptions": [
"Red",
"Blue",
"Green",
"Purple"
],
"isRequired": true,
"isEditable": true,
"default": "10"
},
"systemListValueMetadata": {
"label": "John Doe",
"entityType": "resource"
}
}
]
}