---
title: "Cancel scheduled invite"
url: "https://docs.signnow.com/docs/scheduled-document-invite/operations/delete-document-scheduled-invite"
type: "endpoint"
section: "scheduled-document-invite"
slug: "scheduled-document-invite/operations/delete-document-scheduled-invite"
method: "DELETE"
path: "/document/{document_id}/scheduled-invite"
operation_id: "delete-document-scheduled-invite"
authorization: "bearer"
---

# Cancel scheduled invite

`DELETE /document/{document_id}/scheduled-invite`

This endpoint allows API users to cancel an active scheduled document invite. Once cancelled, the scheduled invite is no longer in the `active` status and will not be sent at the originally scheduled time. After cancellation, a new scheduled invite can be created for the same document.

## Authorization

bearer

## Path Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `document_id` | string | Yes | ID of the document for which the scheduled invite is created. |

## Responses

### 200

Returned when the active scheduled invite is successfully cancelled.

**Example** (`Success`)

```json
{
  "result": "success"
}
```

### 400

Errors:

* The document does not have an active scheduled invite.
* The user is not the document owner.

**Example** (`User is not document owner`)

```json
{
  "errors": [
    {
      "code": 65582,
      "message": "User is not document owner"
    }
  ]
}
```

**Example** (`Active scheduled invite not found`)

```json
{
  "errors": [
    {
      "code": 65582,
      "message": "Active scheduled invite not found."
    }
  ]
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X DELETE \
  "https://api.signnow.com/document/{document_id}/scheduled-invite" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/scheduled-document-invite/operations/delete-document-scheduled-invite*
