cURL
curl --request GET \ --url https://api.indiepitcher.com/v1/contacts/find \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "email": "[email protected]", "userId": 123456, "name": "John Doe", "avatarUrl": "https://example.com/profile_pictures/123456", "languageCode": "en-US", "hardBouncedAt": "2024-04-23T18:25:43.511Z", "subscribedToLists": [ "onboarding", "newsletter" ], "customProperties": { "company": "Acme", "age": 35 } } }
Find a contact based on their email address.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The email of the contact you with to retrieve.
A contact with matching email.
Show child attributes