# AML Watchlist Upload (Bulk Upload)

<mark style="color:green;">`POST`</mark> `{{baseurl}}/v2/api/verifications/watchlist/upload`

#### Headers

| Name                                    | Type   | Description      |
| --------------------------------------- | ------ | ---------------- |
| token<mark style="color:red;">\*</mark> | String | API secret token |

#### Request Body

| Name    | Type   | Description                          |
| ------- | ------ | ------------------------------------ |
| csvlink | String | Link to AML watchlist to be uploaded |

{% tabs %}
{% tab title="AML Watchlist Upload Sample Request" %}

```json
{
    "csvLink": "https://cdn.youverify.co/1688649873222-6Ev2UittaO8_w0_ZHt3Zy.csv"
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Success Response" %}

```json
{
    "success": true,
    "statusCode": 200,
    "message": "csv link uploaded successfully!",
    "data": {},
    "links": []
}
```

{% endtab %}

{% tab title="Error Response" %}

```json
{
  "success": false,
  "statusCode": 404,
  "message": "You have attempted to get a resource that does not exist.",
  "name": "ResourceNotFoundError",
  "data": {}
}
```

{% endtab %}
{% endtabs %}
