GET api/Customer/{employeeNo}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employeeNo

integer

Required

Body Parameters

None.

Response Information

Resource Description

Customer
NameDescriptionTypeAdditional information
staff_id

integer

None.

first_name

string

None.

last_name

string

None.

proxy

integer

None.

customer_id

integer

None.

identifier

string

None.

mobile_number

string

None.

email

string

None.

balance

decimal number

None.

customer_status

string

None.

LastUpdated

date

None.

Disable

boolean

None.

migration_status

string

None.

Response Formats

application/json, text/json

Sample:
{
  "staff_id": 1,
  "first_name": "sample string 2",
  "last_name": "sample string 3",
  "proxy": 1,
  "customer_id": 4,
  "identifier": "sample string 6",
  "mobile_number": "sample string 7",
  "email": "sample string 8",
  "balance": 9.1,
  "customer_status": "sample string 10",
  "LastUpdated": "2026-05-04T00:37:00.0383063+00:00",
  "Disable": true,
  "migration_status": "sample string 12"
}

application/xml, text/xml

Sample:
<Customer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TipsTodaySharedLibrary">
  <Balance>9.1</Balance>
  <CustomerID>4</CustomerID>
  <Disable>true</Disable>
  <Email>sample string 8</Email>
  <EmployeeNo>1</EmployeeNo>
  <FirstName>sample string 2</FirstName>
  <Identifier>sample string 6</Identifier>
  <LastName>sample string 3</LastName>
  <LastUpdated>2026-05-04T00:37:00.0383063+00:00</LastUpdated>
  <MigrationStatus>sample string 12</MigrationStatus>
  <MobileNum>sample string 7</MobileNum>
  <Proxy>1</Proxy>
  <Status>sample string 10</Status>
  <Store>sample string 5</Store>
</Customer>