# Delete an application membership

To delete an application membership, send a `DELETE` request to the `/api/application_memberships/:id` endpoint, where `id` is the id of the application membership that you want to delete.

## Request

**DELETE** <https://provisioning.commercelayer.io/ap&#x69;**/application\\_memberships/:id>\*\*

### Example

{% tabs %}
{% tab title="Request" %}
The following request tries to delete the application membership identified by the ID "xYZkjABcde":

```sh
curl -g -X DELETE \
  'https://provisioning.commercelayer.io/api/application_memberships/xYZkjABcde' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer {{your_access_token}}'
```

{% endtab %}

{% tab title="Response" %}
On success, the API responds with a `204 No Content` status code.
{% endtab %}
{% endtabs %}
