{ "opencollection": "1.0.0", "info": { "name": "Identity Service Ably Tenants API", "version": "1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tenants", "type": "folder" }, "items": [ { "info": { "name": "List all tenants", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/tenants" }, "docs": "List all tenants" }, { "info": { "name": "TenantController_create_v1", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/tenants", "body": { "type": "json", "data": "{}" } } }, { "info": { "name": "Get a specific tenant", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/tenants/:tenantId", "params": [ { "name": "tenantId", "value": "", "type": "path", "description": "tenant's id" } ] }, "docs": "Get a specific tenant" }, { "info": { "name": "Updates an existing Tenant", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/v1/tenants/:tenantId", "params": [ { "name": "tenantId", "value": "", "type": "path", "description": "tenant's id" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing Tenant" } ] } ], "bundled": true }