Skip to content

16. Terminal Api

Vincent Kok edited this page Dec 4, 2023 · 1 revision

List terminals

Retrieve all point-of-sale terminal devices linked to your organization or profile, ordered from newest to oldest.

using ITerminalClient client = new TerminalClient({yourApiKey});
ListResponse<TerminalResponse> response = await client.GetTerminalListAsync();

Get terminal by id

using ITerminalClient client = new TerminalClient({yourApiKey});
TerminalResponse response = await client.GetTerminalAsync({yourTerminalId});
Clone this wiki locally