GET api/v2/customers


Retrieves a list of customers.

- If successful, returns HTTP 200 (OK) with a list of customers.
- If a server error occurs, returns HTTP 500 (Internal Server Error) with additional details in the response body.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerList
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

ClientCustomerNumber

string

None.

IsCompany

boolean

None.

CompanyName

string

None.

Firstname

string

None.

Lastname

string

None.

Email

string

None.

StreetName

string

None.

StreetNumber

string

None.

ApartmentNumber

string

None.

Zipcode

string

None.

City

string

None.

IsProtected

boolean

None.

Created

date

None.

Modified

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "9ddb17f5-1fe4-4c98-9c23-1e9ade7d99f5",
    "ClientCustomerNumber": "sample string 2",
    "IsCompany": true,
    "CompanyName": "sample string 4",
    "Firstname": "sample string 5",
    "Lastname": "sample string 6",
    "Email": "sample string 7",
    "StreetName": "sample string 8",
    "StreetNumber": "sample string 9",
    "ApartmentNumber": "sample string 10",
    "Zipcode": "sample string 11",
    "City": "sample string 12",
    "IsProtected": true,
    "Created": "2025-12-19T07:53:56.660192+01:00",
    "Modified": "2025-12-19T07:53:56.660192+01:00"
  },
  {
    "Id": "9ddb17f5-1fe4-4c98-9c23-1e9ade7d99f5",
    "ClientCustomerNumber": "sample string 2",
    "IsCompany": true,
    "CompanyName": "sample string 4",
    "Firstname": "sample string 5",
    "Lastname": "sample string 6",
    "Email": "sample string 7",
    "StreetName": "sample string 8",
    "StreetNumber": "sample string 9",
    "ApartmentNumber": "sample string 10",
    "Zipcode": "sample string 11",
    "City": "sample string 12",
    "IsProtected": true,
    "Created": "2025-12-19T07:53:56.660192+01:00",
    "Modified": "2025-12-19T07:53:56.660192+01:00"
  }
]