# Send a Reminder

**PUT** `/packets/{packetId}/remind/`

Send a Reminder email or SMS to a Signer. A reminder can only be sent once every hour. The reminder will be sent via the delivery method (email or SMS) and to the email address (or phone number) previously designated for this Packet.

## Request

### Parameters

- `packetId` (path, required, string): The slug that uniquely identifies the Packet

### Responses

- `200`: Ok, the reminder was sent
  - Content types: `application/json`
- `400`: Bad Request
  - Content types: `application/json`
- `404`: Not found response
  - Content types: `application/json`
- `409`: Cannot send a reminder to this packet, probably because the packet is complete (ie, the signer has already finished signing)

  - Content types: `application/json`
