> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Location Status

> Checks whether Business Profile locations are in good standing on Google: verified and controlled by the business, awaiting verification or review, suspended for guideline violations, or in an owne...

Checks whether Business Profile locations are in good standing on Google: verified and controlled by the business, awaiting verification or review, suspended for guideline violations, or in an ownership conflict with a duplicate listing. Use it to audit many locations at once.

|                      |                                          |
| -------------------- | ---------------------------------------- |
| **App**              | Google Business Profile                  |
| **Operation ID**     | `business_profile_check_location_status` |
| **Type**             | Action                                   |
| **Connection**       | `business_profile` (required)            |
| **Credits per run**  | 1                                        |
| **Agent / MCP tool** | Yes                                      |

## Inputs

| Field      | Type                                          | Required | Default | Description                                                                         |
| ---------- | --------------------------------------------- | -------- | ------- | ----------------------------------------------------------------------------------- |
| `accounts` | array (also accepts a comma-separated string) | Yes      | -       | Select the Business Profile locations to check, ask the user for it if not provided |

## Output

**Type**: `List[Dict]`

Returns one row per location with hasVoiceOfMerchant, hasBusinessAuthority, a readable statusSummary, and Google's raw state fields (verify, complyWithGuidelines, resolveOwnershipConflict, waitForVoiceOfMerchant). Uses 1 credit per location.

**Fields**: `locationId`, `locationName`, `hasVoiceOfMerchant`, `hasBusinessAuthority`, `statusSummary`

**Example**:

```json theme={"dark"}
[
  {
    "locationId": "123",
    "locationName": "My Store Downtown",
    "hasVoiceOfMerchant": false,
    "hasBusinessAuthority": true,
    "statusSummary": "needs verification"
  }
]
```
