Draft AI replies to new Google Business reviews and alert your team

Step 3 of 12

03 / 12Edit Fields (Set)

Reshape the raw review into flat fields

Add a second Set node named Format Google Reviews that pulls the star rating, comment text, reviewer name, date and review ID out of the API's nested response into flat, easy-to-reference fields.

The n8n panel for: Reshape the raw review into flat fields6 things to set here
  1. 1Open the Edit Fields (Set) nodedouble-click it on the canvas
  2. 2sourcecopy the value below
  3. 3ratingpaste as an expression
  4. 4reviewTextpaste as an expression
  5. 5reviewerNamepaste as an expression
  6. 6Check before moving onThe item now has simple top-level fields: source, rating, reviewText, reviewerName, reviewDate and reviewId.
Edit Fields (Set) panel in n8nTap to enlarge
source
Google Business Profile
ratingexpression
{{ $json.starRating }}
reviewTextexpression
{{ $json.comment }}
reviewerNameexpression
{{ $json.reviewer.displayName }}
reviewDateexpression
{{ $json.createTime }}
reviewIdexpression
{{ $json.reviewId }}
Checkpoint
The item now has simple top-level fields: source, rating, reviewText, reviewerName, reviewDate and reviewId.