{ "opencollection": "1.0.0", "info": { "name": "Thinkific Admin Bundles Webhooks API", "version": "v1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "Get Webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.thinkific.com/api/public/v1/webhooks", "params": [ { "name": "next", "value": "", "type": "query", "description": "The next page identifier" }, { "name": "limit", "value": "", "type": "query", "description": "The number of items to be returned" } ] }, "docs": "This endpoint returns a list of Webhooks." }, { "info": { "name": "Create Webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.thinkific.com/api/public/v1/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "This endpoint creates a new Webhook" }, { "info": { "name": "Get Webhook by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.thinkific.com/api/public/v1/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the Webhook in the form of an string." } ] }, "docs": "This endpoint returns the Webhook identified by the provided id." }, { "info": { "name": "Update Webhook by ID", "type": "http" }, "http": { "method": "PUT", "url": "https://api.thinkific.com/api/public/v1/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the Webhook in the form of an string." } ], "body": { "type": "json", "data": "{}" } }, "docs": "This endpoint updates the Webhook identified by the provided id." }, { "info": { "name": "Delete Webhook by ID", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.thinkific.com/api/public/v1/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the Webhook in the form of an string." } ] }, "docs": "This endpoint deletes the Webhook identified by the provided id." } ] } ], "bundled": true }