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

# Update Run Review Status

> Approve or reject an automation run

## Endpoint

```bash theme={null}
POST https://api.ugc.inc/automations/update-review-status
```

## Request Body

<ParamField body="runId" type="string" required>
  Run ID to update.
</ParamField>

<ParamField body="reviewStatus" type="'approved' | 'rejected'" required>
  New review status.
</ParamField>

## Response

<ResponseField name="data" type="{ success: boolean }">
  Update result.
</ResponseField>

## TypeScript

```typescript theme={null}
const res = await client.automations.updateReviewStatus({ runId: 'run_123', reviewStatus: 'approved' });
```
