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

# Cancel Skill Submission

> Cancel a pending skill submission

## Overview

Cancels a pending skill submission. Only submissions with `"pending"` status can be cancelled. Users can only cancel their own submissions.

**Auth:** Requires JWT authentication.

## Path Parameters

<ParamField path="submission_id" type="string" required>
  Submission UUID
</ParamField>

## Response

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

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.danubeai.com/v1/skill-submissions/sub_abc123" \
    -H "Authorization: Bearer YOUR_JWT"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "message": "Submission cancelled successfully"
  }
  ```
</ResponseExample>

## Errors

| Status | Description                           |
| ------ | ------------------------------------- |
| 400    | Submission is not in `pending` status |
| 403    | Not the submission owner              |
| 404    | Submission not found                  |
