{ "opencollection": "1.0.0", "info": { "name": "Aurora Solar Agreements Webhooks API", "version": "v2024.05" }, "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.aurorasolar.com/tenants/:tenant_id/webhooks", "params": [ { "name": "tenant_id", "value": "", "type": "path", "description": "The tenant (organization) ID that owns the resource." } ] }, "docs": "Lists the webhooks configured for the tenant." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.aurorasolar.com/tenants/:tenant_id/webhooks", "params": [ { "name": "tenant_id", "value": "", "type": "path", "description": "The tenant (organization) ID that owns the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a webhook subscription so Aurora POSTs event notifications to your endpoint (for example when an async design job completes)." }, { "info": { "name": "Retrieve a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.aurorasolar.com/tenants/:tenant_id/webhooks/:webhook_id", "params": [ { "name": "tenant_id", "value": "", "type": "path", "description": "The tenant (organization) ID that owns the resource." }, { "name": "webhook_id", "value": "", "type": "path" } ] }, "docs": "Retrieves a webhook by ID." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.aurorasolar.com/tenants/:tenant_id/webhooks/:webhook_id", "params": [ { "name": "tenant_id", "value": "", "type": "path", "description": "The tenant (organization) ID that owns the resource." }, { "name": "webhook_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a webhook subscription." }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.aurorasolar.com/tenants/:tenant_id/webhooks/:webhook_id", "params": [ { "name": "tenant_id", "value": "", "type": "path", "description": "The tenant (organization) ID that owns the resource." }, { "name": "webhook_id", "value": "", "type": "path" } ] }, "docs": "Deletes a webhook subscription." } ] } ], "bundled": true }