curl --request GET \
--url https://api.orq.ai/v2/contacts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"_id": "contact_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"external_id": "user_12345",
"display_name": "Jane Smith",
"email": "[email protected]",
"avatar_url": "https://example.com/avatars/jane-smith.jpg",
"tags": [
"premium",
"beta-user"
],
"metadata": {
"department": "Engineering",
"role": "Senior Developer"
},
"created": "2024-01-15T10:30:00Z",
"updated": "2024-01-15T10:30:00Z"
},
{
"_id": "contact_01ARZ3NDEKTSV4RRFFQ69G5XY",
"external_id": "user_67890",
"display_name": "John Doe",
"email": "[email protected]",
"tags": [
"enterprise"
],
"metadata": {
"department": "Sales",
"role": "Account Manager"
},
"created": "2024-01-14T09:15:00Z",
"updated": "2024-01-14T09:15:00Z"
}
],
"has_more": false
}Retrieves a paginated list of contacts in your workspace. Use pagination parameters to navigate through large contact lists efficiently.
curl --request GET \
--url https://api.orq.ai/v2/contacts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"_id": "contact_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"external_id": "user_12345",
"display_name": "Jane Smith",
"email": "[email protected]",
"avatar_url": "https://example.com/avatars/jane-smith.jpg",
"tags": [
"premium",
"beta-user"
],
"metadata": {
"department": "Engineering",
"role": "Senior Developer"
},
"created": "2024-01-15T10:30:00Z",
"updated": "2024-01-15T10:30:00Z"
},
{
"_id": "contact_01ARZ3NDEKTSV4RRFFQ69G5XY",
"external_id": "user_67890",
"display_name": "John Doe",
"email": "[email protected]",
"tags": [
"enterprise"
],
"metadata": {
"department": "Sales",
"role": "Account Manager"
},
"created": "2024-01-14T09:15:00Z",
"updated": "2024-01-14T09:15:00Z"
}
],
"has_more": false
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A limit on the number of objects to be returned. Limit can range between 1 and 50, and the default is 10
1 <= x <= 50A cursor for use in pagination. starting_after is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, ending with 01JJ1HDHN79XAS7A01WB3HYSDB, your subsequent call can include after=01JJ1HDHN79XAS7A01WB3HYSDB in order to fetch the next page of the list.
A cursor for use in pagination. ending_before is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, starting with 01JJ1HDHN79XAS7A01WB3HYSDB, your subsequent call can include before=01JJ1HDHN79XAS7A01WB3HYSDB in order to fetch the previous page of the list.
Search contacts by display name or email address. Minimum 2 characters required.
"john"
Filter contacts by tags. Can be provided as JSON object {"tags": ["premium", "beta-user"]} or as query format "tags=premium,beta-user"
Show child attributes
{ "tags": ["premium", "beta-user"] }
Include usage metrics of the last 30 days for each contact.
Was this page helpful?