v1

latestOpenAPI 3.0.0Apache 2.02026-07-143281,4552.1 MB
Merchants

ListMerchants

Provides details about the merchant associated with a given access token.

The access token used to connect your application to a Square seller is associated with a single merchant. That means that ListMerchants returns a list with a single Merchant object. You can specify your personal access token to get your own merchant information or specify an OAuth token to get the information for the merchant that granted your application access.

If you know the merchant ID, you can also use the RetrieveMerchant endpoint to retrieve the merchant information.

get/v2/merchants

Query parameters

cursorinteger

The cursor generated by the previous response.

Response

Success

cursorinteger

If the response is truncated, the cursor to use in next request to fetch next set of objects.

Example response

{
  "merchant": [
    {
      "business_name": "Apple A Day",
      "country": "US",
      "created_at": "2021-12-10T19:25:52.484Z",
      "currency": "USD",
      "id": "DM7VKY8Q63GNP",
      "language_code": "en-US",
      "main_location_id": "9A65CGC72ZQG1",
      "status": "ACTIVE"
    }
  ]
}