# Deleting Projects via API

## Delete Project

<mark style="color:green;">`POST`</mark> `https://microreact.org/api/projects/bin/`

#### Query Parameters

| Name    | Type   | Description                                                                                       |
| ------- | ------ | ------------------------------------------------------------------------------------------------- |
| project | string | <p>The ID of the project to be deleted (e.g.</p><p><code>gb7RzDg87aJK2yGAqQiai</code></p><p>)</p> |

#### Headers

| Name         | Type   | Description          |
| ------------ | ------ | -------------------- |
| Access-Token | string | An API access token. |

{% tabs %}
{% tab title="200 The value true is returned if the project is deleted successfully." %}

```javascript
true
```

{% endtab %}
{% endtabs %}

### See [access-tokens](https://docs.microreact.org/api/access-tokens "mention")

### Example

{% tabs %}
{% tab title="cURL + Bash" %}

```bash
curl \
  --header "Access-Token: eyJhbGciOiJIUzUxMiJ9..." \
  https://microreact.org/api/projects/bin?project=gb7RzDg87aJK2yGAqQiai
```

{% endtab %}
{% endtabs %}
