{ "opencollection": "1.0.0", "info": { "name": "Upvest Investment Account Transfers Webhook Subscriptions API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Webhook Subscriptions", "type": "folder" }, "items": [ { "info": { "name": "Upvest List webhook subscriptions", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/webhooks" }, "docs": "Retrieve all registered webhook subscriptions." }, { "info": { "name": "Upvest Create a webhook subscription", "type": "http" }, "http": { "method": "POST", "url": "https://api.upvest.co/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Register a new webhook endpoint to receive event notifications. The URL must use HTTPS and support TLS 1.2 or higher." }, { "info": { "name": "Upvest Retrieve a webhook subscription", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "The unique identifier of the webhook subscription." } ] }, "docs": "Retrieve details for a specific webhook subscription." }, { "info": { "name": "Upvest Update a webhook subscription", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.upvest.co/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "The unique identifier of the webhook subscription." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the configuration of an existing webhook subscription." }, { "info": { "name": "Upvest Delete a webhook subscription", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.upvest.co/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "The unique identifier of the webhook subscription." } ] }, "docs": "Remove a webhook subscription. Events will no longer be delivered to this endpoint." } ] } ], "bundled": true }