GET
/
openapi
/
v1
/
Customers
/
{customerNo}
Get Customer by customerNo.
curl --request GET \
  --url https://api.oplog.one/openapi/v1/Customers/{customerNo} \
  --header 'Authorization: <api-key>'
{
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "phone": "<string>",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "customerNo": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "addresses": [
    {
      "addressNo": 123,
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "addressFirstName": "<string>",
      "addressLastName": "<string>",
      "company": "<string>",
      "addressOne": "<string>",
      "addressTwo": "<string>",
      "district": "<string>",
      "city": "<string>",
      "postalCode": "<string>",
      "country": "<string>",
      "addressPhone": "<string>",
      "taxOffice": "<string>",
      "taxNumber": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Headers

X-Tenant-Id
string

If you want to emulate, please enter TenantId.

Path Parameters

customerNo
integer
required

Response

200
text/plain

Success

The response is of type object.