> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# ReviewSourceDetailsInput

GraphQL input

Reference: https://docs.revvue.ai/api-reference/companies-locations/types/inputs/review-source-details-input

## Fields

- `latestReviewDate` — Latest review date.
- `lastProcessed` — Last processed.
- `reviewSource` — Review source.
- `integrationProfileId` — Integration profile id
- `externalLocationId` — External location id.
- `externalLocationName` — Location name in the source
- `externalAccountId` — Account id connected to the location.
- `externalAccountName` — Account name in the source
- `externalPlaceId` — Place id connected to the location.
- `street` — Street from the source.
- `postcode` — Post code from the source.
- `city` — City from the source.
- `country` — Country from the source.
- `enabled` — Activate fetching of date from this source.

## Definition

```graphql
input ReviewSourceDetailsInput {
  latestReviewDate: DateTime
  lastProcessed: DateTime
  reviewSource: IntegrationSource
  integrationProfileId: String
  externalLocationId: String
  externalLocationName: String
  externalAccountId: String
  externalAccountName: String
  externalPlaceId: String
  street: String
  postcode: String
  city: String
  country: String
  enabled: Boolean
}
```