# Create a new supplier

<mark style="color:green;">`POST`</mark> `/supplier`

Create a new supplier

**Headers**

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

**Body**

| Name           | Type   | Description                       |
| -------------- | ------ | --------------------------------- |
| `name*`        | string | Name of the user                  |
| `email*`       | string | Email of the user                 |
| `external_id*` | string | ID of supplier in external system |
| `country`      | string | Alpha-2 country code              |
| `description`  | string |                                   |
| `url`          | string |                                   |

**Response**

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

```json
{
  "status": "ok",
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}
