GET
/
organization
/
account
cURL
curl --request GET \
  --url https://api.gmbapi.com/external-api/gmb/organization/account \
  --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,
    "unique_categories": [
      "gcid:clothing_store",
      "gcid:shoe_store"
    ],
    "unique_additional_categories": [
      "gcid:gift_shop",
      "gcid:accessories_store"
    ],
    "unique_attributes": [
      "has_wheelchair_accessible_entrance",
      "has_wheelchair_accessible_parking_lot",
      "has_restroom"
    ]
  }
}
This endpoint retrieves comprehensive details about a specific business profile account, including categories and attributes. The account must 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.

Query Parameters

account_id
string
required

The unique identifier of the account to retrieve

Response

Account details response

success
boolean

Indicates if the request was successful

payload
object