Retrieve customer contacts list
curl --request GET \
--url https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/customers/{customerId}/customer-contact \
--header 'x-api-key: <api-key>'import requests
url = "https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/customers/{customerId}/customer-contact"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/customers/{customerId}/customer-contact', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Unauthorized"
}{
"message": "Request URL not found"
}{
"message": "Internal Server Error"
}Customers
Retrieve customer contacts list
GET
/
customers
/
{customerId}
/
customer-contact
Retrieve customer contacts list
curl --request GET \
--url https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/customers/{customerId}/customer-contact \
--header 'x-api-key: <api-key>'import requests
url = "https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/customers/{customerId}/customer-contact"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/customers/{customerId}/customer-contact', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Unauthorized"
}{
"message": "Request URL not found"
}{
"message": "Internal Server Error"
}Authorizations
Path Parameters
Query Parameters
Defaults to 20 items per page, maximum 100 items allowed.
Page number. Starts from 1, defaults to 1.
true or false. If true, in response will be included also total count
Array of attribute, operator, and value parts.
Array of attribute and order values.
array consisting of indices with the desired relation to include
Response
Successful response
Related topics
FieldPulse APIImporting CustomersCustom Fields on Material ListsMarketing 360 IntegrationCustomer StatusesWas this page helpful?