Resources
Users, Contractors & Me
These endpoints expose the people in your workspace, internal users (workspace members) and contractors (external trade partners), plus a small /me endpoint for confirming which workspace your API key authenticates to.
GET
/v1/usersList workspace members
Returns every user who is a member of your workspace, ordered by first name. Use the returned id values for fields like sales_rep_id,project_manager_id, or assigned_to on other resources.
GET
/v1/contractorsList contractors
Returns contractors associated with your workspace, ordered alphabetically.
Query parameters
| Name | Type | Description |
|---|---|---|
| q | string | Free-text search across display_name and email. |
| limit | number | Max records to return. 1–100. Default 25. |
GET
/v1/meAuthenticated identity
Returns the user, workspace, and API key id associated with the bearer token. Use this to smoke-test that an API key is valid and pointed at the right workspace.