GET
/
organization
/
accounts
cURL
curl --request GET \
  --url https://api.gmbapi.com/external-api/gmb/organization/accounts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "payload": [
    {
      "id": "acc_111",
      "name": "Acme Retail Chain",
      "organization_id": "org_123456",
      "google_state": "VERIFIED",
      "created_at": 1698765432000,
      "country_codes": [
        "US",
        "CA"
      ],
      "number_of_locations": 45
    },
    {
      "id": "acc_222",
      "name": "Acme Service Centers",
      "organization_id": "org_123456",
      "google_state": "VERIFIED",
      "created_at": 1698865432000,
      "country_codes": [
        "US"
      ],
      "number_of_locations": 12
    }
  ]
}
This endpoint retrieves a list of all business profile accounts that belong to the authenticated user’s organization.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Organization accounts response

success
boolean

Indicates if the request was successful

payload
object[]

Array of account objects