## Delete an invitation template

**delete** `/v1/invitation_templates/{invt}`

Deletes a template. Invitations already sent from it are unaffected;
what went out is recorded on each invitation. No precondition: deletion
is terminal, and a delete-vs-edit race resolves visibly either way.

### Path Parameters

- `invt: string`

### Returns

- `ok: true`

  - `true`

### Example

```http
curl https://messages.api.linqapp.com/v1/invitation_templates/$INVT \
    -X DELETE \
    -H "Authorization: Bearer $LINQ_AMB_API_KEY"
```

#### Response

```json
{
  "ok": true
}
```
