curl --request GET \
--url https://api.clientbox.co/api/1.1/wf/get-customer/{id} \
--header 'Authorization: Bearer <token>'{
"id": "cust_12345",
"name": "Jan Jansen",
"email": "[email protected]"
}Haal de details op van een specifieke klant via hun unieke ID.
curl --request GET \
--url https://api.clientbox.co/api/1.1/wf/get-customer/{id} \
--header 'Authorization: Bearer <token>'{
"id": "cust_12345",
"name": "Jan Jansen",
"email": "[email protected]"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Het unieke ID van de klant (bijv. cust_123).
Klant gegevens.
Was this page helpful?