GET
/
timmi-project
/
api
/
v4
/
clients
curl --request GET \
  --url https://{account}-{sandboxName}.sandbox.{server}.luccasoftware.com/timmi-project/api/v4/clients
{
  "items": [
    {
      "id": 123,
      "name": "<string>",
      "code": "<string>",
      "externalCode": null,
      "owner": null
    }
  ],
  "next": "<string>",
  "prev": "<string>",
  "count": 1
}

Query Parameters

organizationId
integer
required

Filter on a single organization unique identifier.

page
integer
default:
1

Page number

Required range: x > 1
limit
integer
default:
10

Page size

fields.root
enum<string>

Return total items count (across all pages).

Available options:
count

Comma-separated list of codes / names to search for

code
string

Only returns clients whose code is strictly equal to sent value

Response

200
application/json
OK
items
object[]
next
string | null
prev
string | null
count
integer | null
Required range: x > 0

Was this page helpful?