Get flag status
Overview
Get the current flag on a review, or a none state when the review has never been flagged.
Use it to show moderation state next to a review, or to check whether a flag you submitted has been actioned yet.
Prerequisites
- A bearer token in the
Authorizationheader. - The
reviewIdof the record you are targeting.
Base URL
| Environment | URL |
|---|---|
| Production | https://production-api.shoutaboutus.com |
| Development | https://development-api.shoutaboutus.com |
Endpoint
GET /api/v1/reviews/{reviewId}/flag/status
Authentication
-
Requires a bearer token in the
Authorization: Bearer <bearer-token>header. -
Both partner-level and account-level users can call it.
Rate limit
- No rate limit.
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
reviewId | integer | Required | The review's numeric id. Digits only. |
How it works
- 200 always returns
review_id,is_flaggedandflag_status. - When a flag exists,
flagholds the full record andflag_statusis one ofpending,denied,approved_removedorsubmitted_to_platform. - When no flag exists,
flagisnullandflag_statusisnone. This is still a 200, not a 404 — a review with no flag is a valid result, not a missing one.
Errors
| Status | Message | Cause |
|---|---|---|
401 | Unauthenticated | The bearer token is missing, expired or invalid. |
404 | Review not found | No review exists with that id. |
500 | — | Unexpected server error. |
Response
200 Flag exists · 200
200{
"data": {
"review_id": 13383822,
"is_flagged": true,
"flag_status": "pending",
"flag": {
"id": 5012,
"review_id": 13383822,
"reason": "Review contains swear words…",
"reason_identifier": "Profanity",
"flag_reason_detail": "Customer used profane language about staff…",
"flag_status": "pending",
"flag_date": "2026-05-07T11:35:00.000000Z",
"user_id": 42,
"created_at": "2026-05-07T11:35:00.000000Z",
"updated_at": "2026-05-07T11:35:00.000000Z"
}
}
}200 No flag exists · 200
200{
"data": {
"review_id": 13383822,
"is_flagged": false,
"flag_status": "none",
"flag": null
}
}Example request
curl --request GET \
--url "https://production-api.shoutaboutus.com/api/v1/reviews/123/flag/status" \
--header 'Authorization: Bearer <bearer-token>' \
--header 'Accept: application/json'Updated 18 days ago
Did this page help you?
