Contacts
Fetch Contacts
The Contacts feature is the cornerstone of the Dex application. This section provides detailed instructions on how to fetch contacts using either their email address or unique ID.
GET
contacts
Fetch a list of contacts.
GET
https://api.getdex.com/api/rest/contacts?limit=2&offset=0
Path Parameters
Set a limit of possible records for the result (Default:10)
Set an offset of records, util for pagination (Default:0)
200: OK Response body
GET
a contact by ID
Pass a contact id and fetches the full contact information.
GET
https://api.getdex.com/api/rest/contacts/{contactId}
200: OK Response body
GET
a contact by email address
Fetches a contact matching with the email provided.
GET
https://api.getdex.com/api/rest/search/contacts?email=mikesuper@example.co
Path Parameters
Email address of the contact
200: OK Response body
Was this page helpful?