Company
Get customers
Company
Get customers
Get all customers of a workspace.
GET
/
company
/
customers
curl --request GET \
--url https://api.teamcamp.app/v1.0/company/customers \
--header 'apiKey: <api-key>'
{
"customerId": "<string>",
"address": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"companyName": "<string>",
"phone": "<string>",
"clients": [
{
"clientId": "<string>",
"name": "<string>",
"email": "<string>"
}
]
}
Authorizations
Response
200
application/json
API Response
The response is of type object
.
curl --request GET \
--url https://api.teamcamp.app/v1.0/company/customers \
--header 'apiKey: <api-key>'
{
"customerId": "<string>",
"address": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"companyName": "<string>",
"phone": "<string>",
"clients": [
{
"clientId": "<string>",
"name": "<string>",
"email": "<string>"
}
]
}