# Get Contacts Details
Using this location services, you can get all the contacts' details.
# Building your request
Please ensure that your request has been authenticated by passing your JWT access_token
as the Authorization
header.
# Sample request:
In our example, we're going to be retrieving all the contacts that are created so far.
# Sample response:
{
"data": [
{
"type": "contact",
"id": "1009902487177527296",
"attributes": {
"firstName": "FirstName",
"lastName": "LastName",
"emailAddress": "EmailAddress@email.com"
}
},
{
"type": "contact",
"id": "1012940468872282112",
"attributes": {
"firstName": "karthik",
"lastName": "tam",
"emailAddress": "test@test.com"
}
}
]
}
# Response Details:
Many of the response attributes are self-descriptive, but some of them may require a bit more clarity:
firstName
- First name of the Contact.lastName
- Last name of the Contact.emailAddress
- Email address of the Contact. This must be a unique and valid email address, not used by another contact.
# 🚀 ☀️ ⭐️ Congratulations! ⭐️ ☀️ 🚀
You have now obtained information for all contacts, to help your users drive further goodness in the world!