curl --request GET \
--url https://api.example.com/api/contacts/{id}{
"data": {
"id": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company": "<string>",
"title": "<string>",
"linkedin_url": "<string>",
"phone": "<string>",
"metadata": {},
"reply_count": 123,
"replies": [
{}
],
"last_reply_at": "<string>",
"created_at": "<string>"
}
}Retrieve a specific contact by ID
curl --request GET \
--url https://api.example.com/api/contacts/{id}{
"data": {
"id": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company": "<string>",
"title": "<string>",
"linkedin_url": "<string>",
"phone": "<string>",
"metadata": {},
"reply_count": 123,
"replies": [
{}
],
"last_reply_at": "<string>",
"created_at": "<string>"
}
}Show Contact Object
curl -X GET "https://app.replyify.ai/api/contacts/contact-abc123" \
-H "Authorization: Bearer rpl_your_api_key"
{
"data": {
"id": "contact-abc123",
"email": "[email protected]",
"first_name": "John",
"last_name": "Smith",
"company": "Example Inc",
"title": "VP of Sales",
"linkedin_url": "https://linkedin.com/in/johnsmith",
"phone": "+1-555-123-4567",
"metadata": {
"industry": "Technology",
"company_size": "100-500"
},
"reply_count": 3,
"replies": [
{
"id": "reply-xyz789",
"subject": "Re: Partnership opportunity",
"status": "sent",
"category": "Meeting Request",
"received_at": "2024-01-15T14:30:00Z"
},
{
"id": "reply-xyz456",
"subject": "Re: Quick question",
"status": "sent",
"category": "Interested",
"received_at": "2024-01-12T10:15:00Z"
}
],
"last_reply_at": "2024-01-15T14:30:00Z",
"created_at": "2024-01-10T09:00:00Z"
}
}
{
"error": "Contact not found"
}