Logo
Adyen APIs API Documentation

POS Terminal Management API (v1)

Number of APIs: 5


This API provides endpoints for managing your point-of-sale (POS) payment terminals. You can use the API to obtain information about a specific terminal, retrieve overviews of your terminals and stores, and assign terminals to a merchant account or store.

For more information, refer to Assign terminals.

Authentication

Each request to the Terminal Management API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in How to get the API key. Then set this key to the X-API-Key header value, for example:

curl
-H "Content-Type: application/json" \n-H "X-API-Key: Your_API_key" \n...

Note that when going live, you need to generate new web service user credentials to access the live endpoints.

Versioning

Terminal Management API supports versioning using a version suffix in the endpoint URL. This suffix has the following format: vXX, where XX is the version number.

For example: https://postfmapi-test.adyen.com/postfmapi/terminal/v1/getTerminalsUnderAccount When using versioned endpoints, Boolean response values are returned in string format: "true" or "false". If you omit the version from the endpoint URL, Boolean response values are returned like this: true or false.


1. General-/assignTerminals - Assign a terminal to a store

POST {{baseUrl}}/assignTerminals



2. General-/findTerminal - Find where a terminal is assigned to

POST {{baseUrl}}/findTerminal



3. General-/getStoresUnderAccount - Get all the stores under a merchant account

POST {{baseUrl}}/getStoresUnderAccount



4. General-/getTerminalsUnderAccount - Get all the terminals assigned to a store

POST {{baseUrl}}/getTerminalsUnderAccount



5. General-/getTerminalDetails - Get information about a specific terminal

POST {{baseUrl}}/getTerminalDetails



ENDPOINTS