Payments
Get Stores
GET
/
api
/
payments
/
stores
curl --request GET \
--url https://api.atoa.me/api/payments/stores \
--header 'Authorization: Bearer <token>'
{
"page": 0,
"size": 20,
"data": [
{
"id": "549000a4-eee4-4b7d-bc88-c529a92544cd",
"locationName": "cambridge",
"addressLine1": "UNIT 3 BOLNEY GRANGE INDUSTRIAL PK ",
"addressLine2": "49 THE MARTLETS",
"addressPostalCode": "PO16 7GZ",
"cityOrTown": "England",
"primary": "true",
"enabled": "true",
"images": "[image-url]"
}
],
"totalCount": 0
}
By default atoa creates a store for every business. But merchants too can create multiple stores under the same business name. Atoa’s multi store feature allows merchants to manage multiple stores.
Refer to our Multistore feature to learn more.
AUTHORIZATIONS: Bearer <token>
RESPONSE
Page number
number
Page number
Size
number
Number of objects per page.
data
object
Array of object
totalCount
number
default: "0"curl --request GET \
--url https://api.atoa.me/api/payments/stores \
--header 'Authorization: Bearer <token>'
{
"page": 0,
"size": 20,
"data": [
{
"id": "549000a4-eee4-4b7d-bc88-c529a92544cd",
"locationName": "cambridge",
"addressLine1": "UNIT 3 BOLNEY GRANGE INDUSTRIAL PK ",
"addressLine2": "49 THE MARTLETS",
"addressPostalCode": "PO16 7GZ",
"cityOrTown": "England",
"primary": "true",
"enabled": "true",
"images": "[image-url]"
}
],
"totalCount": 0
}