# Asynchronously Imports Schemas in Excel file format into a policy

<mark style="color:green;">`POST`</mark> `/schemas/push/{topicId}/import/xlsx`

Asynchronously imports schemas in Excel file format into a policy. Only users with the Standard Registry role are allowed to make the request.

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Path Parameters**

| Name    | Type   | Description |
| ------- | ------ | ----------- |
| topicId | string | Topic ID    |
| schemas | string | Schemas     |

#### Request Body

| Name | Type   | Description                           |
| ---- | ------ | ------------------------------------- |
| xlsx | string | A xlsx file containing schema config. |

**Response**

{% tabs %}
{% tab title="200" %}

```json5
content:
            application/json:
              schema:
                type: object
```

{% endtab %}

{% tab title="401" %}

```json
{
  Unauthorized
}
```

{% endtab %}

{% tab title="403" %}

```
{
Forbidden
}
```

{% endtab %}

{% tab title="500" %}

```json5
content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorDTO'
```

{% endtab %}
{% endtabs %}
