Groups
List groups
Retrieve all groups for the authenticated user. Groups are collections of contacts used to organize your network (e.g., "Coworkers", "College Friends").
GET /v1/groups/
Parameters
Query parameters
orderBy
object
where
object
include
object
select
object
Responses
200 — Successful response
Content-Type: application/json
error
boolean required
data
object required
data.groups
array<any> required
Example
{
"error": false,
"data": {
"groups": [
null
]
}
}
400
No response body.
401
No response body.
403
No response body.
404
No response body.
429
No response body.
500
No response body.
Code samples
curl https://api.prod.getdex.com/v1/groups/ \
--header 'Authorization: Bearer YOUR_API_KEY'
fetch('https://api.prod.getdex.com/v1/groups/', {
headers: {
Authorization: 'Bearer YOUR_API_KEY'
}
})
requests.get("https://api.prod.getdex.com/v1/groups/",
headers={
"Authorization": "Bearer YOUR_API_KEY"
}
)
Batch update custom field values
Set or update custom field values for multiple contacts in a single request. Useful for bulk-populating custom fields across your contact database.
Add contacts to a group
Add one or more contacts to a group by providing an array of contact IDs. Contacts that are already in the group are ignored.

