- Lists merchant's terminals
GET {{baseURL}}/pos-api/v1/terminals
This endpoint lists a merchant's terminals.
Specifies the page number of the returned search results.
A page is considered each set of the pageSize value.
The maximum page value is the pageSize divided by the total count rounded up. The count is zero-based. For example, if pageSize is 50 and the total is 130, there are three pages. The maximum page value is 2.
Values above the maximum page value will complete successfully but not return any items.
Example: 0
Specifies the number of items for each page of the returned search results.
A page is considered each set of the pageSize value.
The maximum page value is the pageSize divided by the total count rounded up. The count is zero-based. For example, if pageSize is 50 and the total is 130, there are three pages. The maximum page value is 2.
Example: 50
- Mock serverhttps://developer.flute.com/_mock/api-reference/pos-api/v1/terminals
- Sandbox environmenthttps://sandbox.api.flute.com/pos-api/v1/terminals
- Production environmenthttps://api.flute.com/pos-api/v1/terminals
curl -i -X GET \
'https://developer.flute.com/_mock/api-reference/pos-api/v1/terminals?page=0&pageSize=15&orderBy=string&asc=true&search=Peppared&deliveryStatusId=0&serialNumber=string&manufacturerIds=0&modelIds=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "items": [ { "id": "b4fd53c7-bcc0-4c5c-aab8-1024983f315b", "merchantId": "8c2a42d1-9875-42e0-84a9-71f2fa5b4b9b", "serialNumber": "SN00000001", "terminalManufacturer": "SUNMI", "terminalModel": "Pro 1", "deliveryStatusId": 3, "deliveryStatusName": "Active", "createdOn": "2025-12-16T10:35:52.2487759Z", "modifiedOn": "2025-12-16T10:35:52.2487761Z", "merchantCompanyName": "Merchant", "terminalModeId": 1, "terminalModeName": "Standalone", "connectionStatusId": 2, "connectionStatus": "Offline", "lastSeenTimestamp": "2025-12-16T09:35:52.2487774Z" } ], "total": 3 }