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

# Cancel scheduled invite

`DELETE /documentgroup/{document_group_id}/scheduled-invite`

This endpoint allows API users to cancel an active scheduled document group 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 group.

## Authorization

bearer

## Path Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `document_group_id` | string | Yes | ID of the document group 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 group does not have an active scheduled invite.
* The user is not the document group owner.

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

```json
{
  "errors": [
    {
      "code": 65582,
      "message": "User is not document group 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/documentgroup/{document_group_id}/scheduled-invite" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

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