GET api/v2/customers/byid/{id}
Retrieve a single customer by its Id. http status code 200 (Ok) Indicates the response body contains a customer object. If customer not found, http status code 404 (NotFound) is returned. if a server error occurs, http status code 500 (InternalServerError) is returned. the response body contains more details.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
F8 application customer id |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomerV2| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ClientCustomerNumber | string |
None. |
|
| IsCompany | boolean |
None. |
|
| CompanyName | string |
None. |
|
| Firstname | string |
None. |
|
| Lastname | string |
None. |
|
| SSN | string |
None. |
|
| Phone | string |
None. |
|
| Mobile | string |
None. |
|
| string |
None. |
||
| StreetName | string |
None. |
|
| StreetNumber | string |
None. |
|
| ApartmentNumber | string |
None. |
|
| Zipcode | string |
None. |
|
| City | string |
None. |
|
| COAddress | string |
None. |
|
| Language | string |
None. |
|
| InvoiceFirstName | string |
None. |
|
| InvoiceLastName | string |
None. |
|
| InvoiceStreetName | string |
None. |
|
| InvoiceStreetNumber | string |
None. |
|
| InvoiceZipcode | string |
None. |
|
| InvoiceCity | string |
None. |
|
| InvoiceApartmentNumber | string |
None. |
|
| IsProtected | boolean |
None. |
|
| Created | date |
None. |
|
| Modified | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "10fbe3d4-02f6-44c4-ba58-afc1a62f7300",
"ClientCustomerNumber": "sample string 2",
"IsCompany": true,
"CompanyName": "sample string 4",
"Firstname": "sample string 5",
"Lastname": "sample string 6",
"SSN": "sample string 7",
"Phone": "sample string 8",
"Mobile": "sample string 9",
"Email": "sample string 10",
"StreetName": "sample string 11",
"StreetNumber": "sample string 12",
"ApartmentNumber": "sample string 13",
"Zipcode": "sample string 14",
"City": "sample string 15",
"COAddress": "sample string 16",
"Language": "sample string 17",
"InvoiceFirstName": "sample string 18",
"InvoiceLastName": "sample string 19",
"InvoiceStreetName": "sample string 20",
"InvoiceStreetNumber": "sample string 21",
"InvoiceZipcode": "sample string 22",
"InvoiceCity": "sample string 23",
"InvoiceApartmentNumber": "sample string 24",
"IsProtected": true,
"Created": "2025-12-19T07:50:02.1748385+01:00",
"Modified": "2025-12-19T07:50:02.1748385+01:00"
}