curl --request GET \
--url https://api.usepylon.com/contacts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"account": {
"id": "<string>"
},
"avatar_url": "<string>",
"custom_fields": {},
"email": "<string>",
"emails": [
"<string>"
],
"id": "<string>",
"name": "<string>",
"portal_role": "no_access"
}
],
"pagination": {
"cursor": "<string>",
"has_next_page": true
},
"request_id": "<string>"
}Get all contacts
curl --request GET \
--url https://api.usepylon.com/contacts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"account": {
"id": "<string>"
},
"avatar_url": "<string>",
"custom_fields": {},
"email": "<string>",
"emails": [
"<string>"
],
"id": "<string>",
"name": "<string>",
"portal_role": "no_access"
}
],
"pagination": {
"cursor": "<string>",
"has_next_page": true
},
"request_id": "<string>"
}