{ "opencollection": "1.0.0", "info": { "name": "NetBird REST Accounts Identity Providers API", "version": "0.0.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Identity Providers", "type": "folder" }, "items": [ { "info": { "name": "List all Identity Providers", "type": "http" }, "http": { "method": "GET", "url": "https://api.netbird.io/api/identity-providers", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a list of all identity providers configured for the account" }, { "info": { "name": "Create an Identity Provider", "type": "http" }, "http": { "method": "POST", "url": "https://api.netbird.io/api/identity-providers", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a new identity provider configuration" }, { "info": { "name": "Retrieve an Identity Provider", "type": "http" }, "http": { "method": "GET", "url": "https://api.netbird.io/api/identity-providers/:idpId", "params": [ { "name": "idpId", "value": "", "type": "path", "description": "The unique identifier of an identity provider" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get information about a specific identity provider" }, { "info": { "name": "Update an Identity Provider", "type": "http" }, "http": { "method": "PUT", "url": "https://api.netbird.io/api/identity-providers/:idpId", "params": [ { "name": "idpId", "value": "", "type": "path", "description": "The unique identifier of an identity provider" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update an existing identity provider configuration" }, { "info": { "name": "Delete an Identity Provider", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.netbird.io/api/identity-providers/:idpId", "params": [ { "name": "idpId", "value": "", "type": "path", "description": "The unique identifier of an identity provider" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete an identity provider configuration" } ] } ], "bundled": true }