---
title: "Update review status by id"
url: "https://earlyaccess.developers.bynder.com/apis/antivirus-api-1/versions/771fba7c-08c7-416e-9990-6e7f1c0ceaf2/paths/v7-quarantine-v1-assets-asset_id/put"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/antivirus-api-1/versions/771fba7c-08c7-416e-9990-6e7f1c0ceaf2.md

# Update review status by id

`PUT` `/v7/quarantine/v1/assets/{asset_id}`

## Path parameters

- `asset_id` (string, required)

## Request body (required)

Content types: `application/json`

## Responses

- `200` - Review status updated
- `400` - Bad request
- `403` - Forbidden
- `404` - Asset not found

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Antivirus API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}
paths:
  /v7/quarantine/v1/assets/{asset_id}:
    put:
      parameters:
        - in: path
          name: asset_id
          required: true
          schema:
            example: 00000000-0000-0000-0000-000000000000
            type: string
      requestBody:
        content:
          application/json:
            schema:
              properties:
                data:
                  properties:
                    review_status:
                      enum:
                        - APPROVED
                        - DENIED
                      example: DENIED
                      type: string
                  type: object
              type: object
        required: true
      responses:
        "200":
          content:
            application/json:
              schema:
                type: object
          description: Review status updated
        "400":
          content:
            application/json:
              schema:
                type: object
          description: Bad request
        "403":
          content:
            application/json:
              schema:
                type: object
          description: Forbidden
        "404":
          content:
            application/json:
              schema:
                properties:
                  message:
                    example: Asset not found
                    type: string
                type: object
          description: Asset not found
      security:
        - OAuth2:
            - Audit quarantined assets
        - permanentToken:
            - Audit quarantined assets
      summary: Update review status by id
      tags:
        - Quarantine
security:
  - OAuth2:
      - Audit quarantined assets
  - permanentToken:
      - Audit quarantined assets
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            Audit quarantined assets: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            Audit quarantined assets: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
