{ "opencollection": "1.0.0", "info": { "name": "Synctera Accounts Webhooks API", "version": "0.20.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.synctera.com/v0/webhooks", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "page_token", "value": "", "type": "query" }, { "name": "is_enabled_only", "value": "", "type": "query" } ] }, "docs": "List all webhooks" }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.synctera.com/v0/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Create a webhook" }, { "info": { "name": "Get a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.synctera.com/v0/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Webhook ID" } ] }, "docs": "Get a webhook" }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.synctera.com/v0/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Webhook ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a webhook" }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.synctera.com/v0/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Webhook ID" } ] }, "docs": "Delete a webhook" }, { "info": { "name": "List webhook events", "type": "http" }, "http": { "method": "GET", "url": "https://api.synctera.com/v0/webhooks/:webhook_id/events", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Webhook ID" }, { "name": "start_date", "value": "", "type": "query", "description": "Start date of date range filtering for events. Date is inclusive and should be in UTC timezone 00:00:00.. start_date is alias of start_time and is deprecated. Please use start_time instead." }, { "name": "end_date", "value": "", "type": "query", "description": "End date of date range filtering for events. Date is inclusive and should be in UTC timezone 00:00:00.. end_date is alias of end_time and is deprecated. Please use end_time instead." }, { "name": "start_time", "value": "", "type": "query", "description": "Start time of date-time range filtering for events. Date is inclusive and should be in UTC timezone 00:00:00." }, { "name": "end_time", "value": "", "type": "query", "description": "End time of date-time range filtering for events. Date is inclusive and should be in UTC timezone 00:00:00." }, { "name": "limit", "value": "", "type": "query" }, { "name": "page_token", "value": "", "type": "query" } ] }, "docs": "List webhook events. This response will not associate with the event response history." }, { "info": { "name": "Get webhook event", "type": "http" }, "http": { "method": "GET", "url": "https://api.synctera.com/v0/webhooks/:webhook_id/events/:event_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Webhook ID" }, { "name": "event_id", "value": "", "type": "path", "description": "Webhook event ID" } ] }, "docs": "Get webhook event by ID" }, { "info": { "name": "Resend an event", "type": "http" }, "http": { "method": "POST", "url": "https://api.synctera.com/v0/webhooks/:webhook_id/events/:event_id/resend", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Webhook ID" }, { "name": "event_id", "value": "", "type": "path", "description": "Webhook event ID" }, { "name": "delay", "value": "", "type": "query", "description": "Delay the event triggering in seconds" } ] }, "docs": "Resend a webhook event" }, { "info": { "name": "Trigger an event", "type": "http" }, "http": { "method": "POST", "url": "https://api.synctera.com/v0/webhooks/trigger", "body": { "type": "json", "data": "{}" } }, "docs": "Trigger an specific event for webhook testing purpose" } ] } ], "bundled": true }