Contacts
Contacts
Retrieve all contacts for a specific workspace with pagination.
Authorizations
Path parameters
workspaceIdstringRequired
ID of the workspace
Query parameters
pageintegerOptional
Page number for pagination
per_pageintegerOptional
Number of records per page
Responses
200
Success
application/json
404
Contacts not found
get
/api/workspaces/{workspaceId}/contactsCreate a new contact for a specific workspace.
Authorizations
Path parameters
workspaceIdstringRequired
ID of the workspace
Body
Responses
200
Contact created successfully
application/json
400
Validation Error(s)
application/json
404
Workspace not found
application/json
post
/api/workspaces/{workspaceId}/contactsDelete a contact by its ID along with its identifiers and attributes.
Path parameters
workspaceIdstringRequired
ID of the workspace
contactIdstringRequired
ID of the contact
Responses
200
Contact deleted successfully
application/json
404
Contact not found
application/json
delete
/api/workspaces/{workspaceId}/contacts/{contactId}Update an existing contact for a specific workspace.
Authorizations
Path parameters
workspaceIdstringRequired
ID of the workspace
contactIdstringRequired
ID of the contact
Body
Responses
200
Success
application/json
400
Validation Error(s)
404
Contact not found
patch
/api/workspaces/{workspaceId}/contacts/{contactId}Last updated