> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vertracloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Stop Application

> Stops an application by its ID.

<ParamField path="id" type="string" required>
  The application ID to stop. If the application
  belongs to a workspace, include the workspace ID in the format `appId-workspaceId`.
</ParamField>

### Response

<ResponseField name="response" type="object">
  The response containing the operation status.

  <Expandable title="Toggle object">
    <ResponseField name="status" type="string">
      The operation status (`stopping`).
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "response": {
      "status": "stopping"
    }
  }
  ```
</ResponseExample>
