Logo
Adyen APIs API Documentation

Get all the stores under a merchant account

POST {{baseUrl}}/getStoresUnderAccount

Returns a list of stores associated with a company account or a merchant account, including the status of each store.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status OK

{ "stores" : [ { "store" : "YOUR_STORE", "description" : "YOUR_STORE", "address" : { "city" : "The City", "countryCode" : "NL", "postalCode" : "1234", "streetAddress" : "The Street" }, "status" : "Active", "merchantAccountCode" : "YOUR_MERCHANT_ACCOUNT" } ] }



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

ENDPOINTS