---
title: "Update review status by list of asset Ids"
url: "https://earlyaccess.developers.bynder.com/apis/antivirus-api-1/versions/771fba7c-08c7-416e-9990-6e7f1c0ceaf2/paths/v7-quarantine-v1-antivirus-audit/post"
---

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

# Update review status by list of asset Ids

`POST` `/v7/quarantine/v1/antivirus-audit`

## Request body (required)

Content types: `application/json`

## Responses

- `200` - Review status updated
- `400` - Bad request
- `403` - Forbidden

## 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/antivirus-audit:
    post:
      requestBody:
        content:
          application/json:
            schema:
              properties:
                data:
                  properties:
                    antivirus_asset_ids:
                      items:
                        example: ac93e443-e4d5-442f-966b-b6f24c025c71
                        type: string
                      type: array
                    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
      security:
        - OAuth2:
            - Audit quarantined assets
        - permanentToken:
            - Audit quarantined assets
      summary: Update review status by list of asset Ids
      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
```
