Frontu API Sandbox
ClientApi/Client
Get Client list
1min
GET
https://dev1.frontu.com//client/api/v2/clients
Returns all clients array.
Authentication
Authorization
apiKey
Query Parameters
version
integer
page
integer
items
integer
Responses
200
Returned when successful
object
next_page
integer
items
object[]
Curl
JS
Ruby
Python
1curl --location 'https://dev1.frontu.com//client/api/v2/clients?page=1&items=100' \
2--header 'Accept: application/json' \
3--header 'Content-Type: application/json'
Responses
200
1// Returned when successful
2{
3 "next_page": 0,
4 "items": [
5 {
6 "version": 0,
7 "title": "",
8 "address": "",
9 "city": "",
10 "zipCode": "",
11 "phone": "",
12 "email": "",
13 "note": "",
14 "companyCode": "",
15 "companyVatCode": "",
16 "guid": "",
17 "created": "",
18 "updated": "",
19 "deleted": false,
20 "clientType": false,
21 "systemId": "",
22 "reportEmails": "",
23 "customValues": [
24 {
25 "guid": "",
26 "value": ""
27 }
28 ]
29 }
30 ]
31}
Updated 18 Apr 2025
Did this page help you?