{ "opencollection": "1.0.0", "info": { "name": "Dynamic Client Registration API", "version": "v3.1.0" }, "items": [ { "info": { "name": "Client Registration", "type": "folder" }, "items": [ { "info": { "name": "Register a client by way of a Software Statement Assertion", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/register", "body": { "type": "json", "data": "{}" } }, "docs": "Endpoint will be secured by way of Mutual Authentication over TLS" }, { "info": { "name": "Get a client by way of Client ID", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/register/:ClientId", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "ClientId", "value": "", "type": "path", "description": "The client ID" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://authserver.example/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get a client by way of Client ID" }, { "info": { "name": "Update a client by way of Client ID", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/register/:ClientId", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "ClientId", "value": "", "type": "path", "description": "The client ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://authserver.example/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Update a client by way of Client ID" }, { "info": { "name": "Delete a client by way of Client ID", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/register/:ClientId", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "ClientId", "value": "", "type": "path", "description": "The client ID" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://authserver.example/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Delete a client by way of Client ID" } ] } ], "bundled": true }