Delete Invoice Reminder
DELETE /api/v1/invoices/{invoiceid}/invoicesreminders/{id}
Delete a specific reminder configuration.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
invoice_id |
integer | Yes | The unique ID of the invoice. |
id |
integer | Yes | The unique ID of the reminder. |
Request Example
DELETE /api/v1/invoices/123/invoices_reminders/789 HTTP/1.1
Host: koteshen.com
Authorization: Bearer {access_token}
Content-Type: application/json
Accept: application/json
Response
Status Codes:
204 No Content- Reminder deleted.401 Unauthorized- Invalid or missing token.404 Not Found- Invoice or reminder not found.
Success Response (204)
Empty body.