Clients
List Clients
List clients from an organization.
Search
The search query parameter takes a list of words and enables you to only return clients whose code or name contains all those words.
GET /api/v4/clients?organizationId=1&search=goo,compa&fields.root=count HTP/1.1
{
"count": 2,
"items": [
{
"id": 1,
"name": "Google",
"code": "World company"
},
{
"id": 1,
"name": "Google company",
"code": "Alphabet Group"
]
}
GET
Query Parameters
Filter on a single organization unique identifier.
Page number
Required range:
x > 1
Page size
Return total items count (across all pages).
Available options:
count
Comma-separated list of codes / names to search for
Only returns clients whose code is strictly equal to sent value
Was this page helpful?