Inserts
Inserts are PDF documents (flyers, notices, brochures) that are printed and mailed along with a payment. This API lets your OAuth client manage its own inserts: list them, upload new ones, inspect, update, or soft-delete them. Every request is scoped to the client embedded in your OAuth token — you can never see or touch another client's inserts.
Endpoints
| Operation | Endpoint |
|---|---|
| List Inserts | POST /v1/inserts/index |
| Add An Insert | POST /v1/inserts/create (alias: POST /v1/insert/create) |
| Get Insert By ID | POST /v1/inserts/get/{id} |
| Update An Insert | POST /v1/inserts/update/{id} |
| Delete An Insert | POST /v1/inserts/delete/{id} |
Authentication uses the same OAuth client_credentials flow as the rest of the API (see Authenticating) and requires the api.access scope. Unknown or foreign IDs return 404; invalid OAuth returns 403 with {"status":0,"errors":["Access Denied"]}.