GET Get One Contact
Base URLs
Demo URL: https://demoapi.openletterconnect.com/api/v1
Production URL: https://api.openletterconnect.com/api/v1
{{base_url}}/contacts/{{id}}
Description
This endpoint retrieves details about a specific contact. You can filter contacts by different criteria like address status and tags. The response includes information such as the contact's name, company, address, phone number, email, and labels.
AUTHORIZATION
Bearer Token
- Token:
{{jwt_token}}
Example Request
curl --location -g '{{base_url}}/contacts/1'
Example Response
{
"message": "Success",
"data": {
"id": "1",
"firstName": "Alex",
"lastName": "Brown",
"fullName": "Alex Brown",
"companyName": "TechCorp",
"address1": "1234 Random Street, Suite 567",
"address2": "Springfield, IL 62704",
"city": "Springfield",
"state": "Illinois",
"zip": "62704",
"phoneNo": "217-555-1234",
"extension": "042",
"websiteUrl": "https://techcorp.com",
"addressStatus": null,
"lastMailedStatus": null,
"lastMailedDate": null,
"orgId": "1",
"email": "[email protected]",
"isVerified": null,
"isLiveMode": false,
"ContactLabels": [
{
"id": "1",
"title": "office"
},
{
"id": "2",
"title": "shop"
},
{
"id": "3",
"title": "house"
}
],
"createdAt": "2023-12-04T13:49:32.768Z"
}
}