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

# Rescind

The `/packages/rescind` endpoint allows you to rescind a package that has already been sent for signing.
This operation cancels the signing process and optionally notifies all signers associated with the package.

## Request

```http Request theme={null}
POST /packages/rescind
{
 "packageId": "cf91071d-966d-41ea-b9bf-aa96a8e56c02",
 "rescindMessage": "The package has been rescinded due to an error in the documents.",
 "notify": true
}
```

### Body

<ParamField body="packageId" type="string" required>
  Unique identifier for the package to rescind.
</ParamField>

<ParamField body="rescindMessage" type="string">
  Message explaining why the package is being rescinded.
</ParamField>

<ParamField body="notify" type="boolean">
  Set to true to notify all signers about the rescind action.
</ParamField>

## Response

<ResponseField name="packageId" type="string">
  Unique identifier of the package rescinded.
</ResponseField>
