Get customers
GET/api/v2/Contracts/Customers
Get customers
Request
Query Parameters
ContinuationToken string
Token is needed, unless all records have been returned in previous request. Do not forget to pass also all other parameters.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
ContinuationToken stringnullable
Items
object[]
nullable
Guid guid
Name stringnullablerequired
Code stringnullable
Street stringnullable
City stringnullable
PostalCode stringnullable
Country stringnullable
Note stringnullable
BusinessId stringnullable
VatNumber stringnullable
Website stringnullable
Description stringnullable
ContactPersonName stringnullable
PhoneNumber stringnullable
Email stringnullable
ExternalKey stringnullable
{
"ContinuationToken": "string",
"Items": [
{
"Guid": "string",
"Name": "string",
"Code": "string",
"Street": "string",
"City": "string",
"PostalCode": "string",
"Country": "string",
"Note": "string",
"BusinessId": "string",
"VatNumber": "string",
"Website": "string",
"Description": "string",
"ContactPersonName": "string",
"PhoneNumber": "string",
"Email": "string",
"ExternalKey": "string"
}
]
}
Error
- application/json
- Schema
- Example (from schema)
Schema
Error
object
required
Code stringnullable
Message stringnullable
{
"Error": {
"Code": "string",
"Message": "string"
}
}
Loading...