Get Contacts
You can create contacts for anyone you need to keep in touch with, such as your clients, suppliers, staff, or even resources.
Contacts help you store and organize important details like phone numbers, email addresses, and other contact information, making it easy to manage communication across your projects.
READ
access to the CONTACT
module is required to access this endpointid
cannot be assumed to be unique. Use uuid
instead.Contacts may be either people or organizations and these are stored in separate tables in the database, each with its own auto-incrementing identifier.
The contacts model creates a union between these two tables to allow simplified operations under a single namespace.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
One or more (comma seperated) IDs of contacts to retrieve. Warning, use uuid to guarantee a single result is returned
One or more (comma seperated) uuids of contacts to retrieve
Perform a partial match text search for the contact name
Specify the type of contact you wish to return
person
, organization
Return results that were added, edited or deleted since this UNIX timestamp
Comma seperated list of fields you wish to return
Specify the page of results you wish to return
The number of results returned per page. Default if not specified is 10
Specify the field (with type of string or integer) you wish to order (ascending) the response with
Specify the field (with type of string or integer) you wish to order (descending) the response with
Specify if multiple filters should be combined with OR or AND logic
OR
, AND