get https://sandbox.lenco.co/access/v1/point-of-sale/terminals
Retrieve information about your assigned POS terminals
Response Schema:
{
"status": boolean,
"message": string,
"data": {
"terminals": [
{
"id": string,
"name": string,
"address": string | null,
"phone": string | null,
"serialNumber": string,
"model": string | null,
"assignedAt": date-time,
"settlementAccountId": string | null,
"accountDetails": {
"accountName": string,
"accountNumber": string,
"bankName": string,
} | null,
"status": "assigned" | "unassigned",
"unassignedAt": date-time | null
}
],
"meta": {
"total": number,
"pageCount": number,
"perPage": number,
"currentPage": number
}
}
}