New API version v6.12.5 has been released! 🎉
REST Documentation
GET Contact Persons

Get Contact Persons

You can use this endpoint to call up a customer's contact persons.

Request

GET /api/v1/customers/:customer_number/contacts
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/customers/11917/contacts' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {token}'

Response

{
	"data": [
		{
			"id": 3,
			"first_name": "Kay",
			"last_name": "Cremin",
			"salutation": "Herr",
			"title": "Prof.",
			"phone": "(608) 470-4444",
			"mobile": "(640) 265-7087",
			"fax": "(701) 478-4786",
			"email": "schmidt.allen@example.org",
			"primary": true,
			"job_title": "Real Estate Association Manager",
			"language": "HI",
			"inactive": 1
		},
		{
			"id": 11,
			// ...
		}
	]
}