Authentication
curl -X GET "https://app.journeybee.io/api/v1/contacts" \
-H "Authorization: Bearer your-api-key-uuid" \
-H "Content-Type: application/json"
Query Parameters
Filter contacts by specific partnership
Search contacts by name, email, or company
Response Schema
Array of contact objects
Associated partnership ID
Array of custom field values
Example Response
[
{
"id": 123,
"uuid": "contact-uuid-123",
"email": "john@partner.com",
"first_name": "John",
"last_name": "Smith",
"position": "Partnership Manager",
"phone_number": "+1-555-123-4567",
"company_name": "Partner Corp",
"partnership_id": 456,
"tags": [
{
"id": 5,
"label": "Key Contact",
"background_color": "#10B981"
}
],
"custom_fields": []
}
]
Notes
- Requires API key with
read_access
permission
- Contacts are associated with partner companies through partnerships
- Used for communication and relationship management