Logo
Adyen APIs API Documentation

Get all the terminals assigned to a store

POST {{baseUrl}}/getTerminalsUnderAccount

Returns a list of payment terminals associated with a company account, merchant account, or store. The response shows whether the terminals are in the inventory, or in-store (ready for boarding or already boarded).

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status OK

{ "companyAccount" : "YOUR_COMPANY_ACCOUNT", "merchantAccounts" : [ { "merchantAccount" : "YOUR_MERCHANT_ACCOUNT", "stores" : [ { "store" : "YOUR_STORE", "inStoreTerminals" : [ "M400-401972715" ] } ] } ] }



Curl
curl -X POST 'https://postfmapi-test.adyen.com/postfmapi/terminal/v1/getTerminalsUnderAccount' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"companyAccount":"","merchantAccount":"","store":"YOUR_STORE"}'

ENDPOINTS