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

# Update scheduled invite

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

This endpoint allows API users to update the `scheduled_timestamp` of an active scheduled document group invite. Only the timing can be changed; to change the invite payload itself, cancel the active scheduled invite and create a new one.

**Notes**

* A paid API plan or Site License is required.
* The new `scheduled_timestamp` must be a Unix timestamp (in seconds) that points to a moment in the future.
* The document group must have a scheduled invite in the `active` status.

## 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. |

## Request Body

**Schema**

```json
{
  "type": "object",
  "required": [
    "scheduled_timestamp"
  ],
  "properties": {
    "scheduled_timestamp": {
      "type": "integer",
      "example": 1820000000,
      "description": "New Unix timestamp (in seconds) of the moment when the prepared invite must be sent. Must be a positive integer that points to a moment in the future."
    }
  },
  "x-examples": {
    "Correct request": {
      "scheduled_timestamp": 1820000000
    }
  }
}
```

**Example** (`Correct request`)

```json
{
  "scheduled_timestamp": 1820000000
}
```

## Responses

### 200

Returned when the scheduled invite is successfully rescheduled.

**Example** (`Success`)

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

### 400

Validation errors for the update payload:

* `scheduled_timestamp` is missing, null, not an integer, or points to a moment in the past.
* The document group does not have an active scheduled invite.
* The user is not the document group owner.

**Example** (`Incorrect scheduled time`)

```json
{
  "errors": [
    {
      "code": 65582,
      "message": "Incorrect scheduled time for invite."
    }
  ]
}
```

**Example** (`scheduled_timestamp is null`)

```json
{
  "errors": [
    {
      "code": 65536,
      "message": "The `scheduled_timestamp` value should not be null."
    }
  ]
}
```

**Example** (`scheduled_timestamp wrong type`)

```json
{
  "errors": [
    {
      "code": 65536,
      "message": "The `scheduled_timestamp` value should be of type int."
    }
  ]
}
```

**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 PUT \
  "https://api.signnow.com/documentgroup/{document_group_id}/scheduled-invite" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"scheduled_timestamp": 1820000000}'
```

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