---
title: "Delete account application"
description: "Delete a single application."
protocol: rest
method: DELETE
endpoint: "/v1/accounts/applications/{id}"
baseUrl: "https://api.gravv.xyz"
group: "Accounts"
auth:
  label: "Api-Key"
  name: "Api-Key"
  in: header
---

# Delete account application

<Endpoint method="DELETE" path="/v1/accounts/applications/{id}" />

Delete a single application.

## Path Parameters

<ParamField name="id" path="id" type="string" required>
</ParamField>

## Responses

| Status | Description |
| --- | --- |
| `200` | Application deleted |
| `400` | Request failed. All gateway errors are returned as HTTP 400 with this envelope. |

### 200 response

<ResponseField name="data" type="object" required>

  <Expandable title="properties">
    <ResponseField name="success" type="boolean">
    </ResponseField>

    <ResponseField name="message" type="string">
    </ResponseField>

  </Expandable>
</ResponseField>

<ResponseField name="error" type="null" required>
</ResponseField>

### 400 response

<ResponseField name="data" type="null" required>
</ResponseField>

<ResponseField name="error" type="string" required>
  Human-readable error message.
</ResponseField>

## Authorization

- **ApiKeyAuth**
