{ "opencollection": "1.0.0", "info": { "name": "Didomi consents/events keys API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "keys", "type": "folder" }, "items": [ { "info": { "name": "Retrieve a list of API keys", "type": "http" }, "http": { "method": "GET", "url": "https://api.didomi.io/v1/keys", "params": [ { "name": "$limit", "value": "", "type": "query", "description": "Number of results to return" }, { "name": "$skip", "value": "", "type": "query", "description": "Number of results to skip" }, { "name": "$sort", "value": "", "type": "query", "description": "Property to sort results" }, { "name": "filter", "value": "", "type": "query", "description": "Query parameters to filter" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a list of all API keys the user has access to" }, { "info": { "name": "Create a new API key", "type": "http" }, "http": { "method": "POST", "url": "https://api.didomi.io/v1/keys", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new API key that can be used for authenticating HTTP requests to the Didomi API" }, { "info": { "name": "Retrieve an API key", "type": "http" }, "http": { "method": "GET", "url": "https://api.didomi.io/v1/keys/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the API key to retrieve" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a single API key with the given ID" }, { "info": { "name": "Update an API key", "type": "http" }, "http": { "method": "PUT", "url": "https://api.didomi.io/v1/keys/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the API key to update" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update an existing API key" }, { "info": { "name": "Patch an API key", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.didomi.io/v1/keys/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the API key to patch" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Patch an existing API key" }, { "info": { "name": "Delete an API key", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.didomi.io/v1/keys/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the API key to delete" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete an existing API key" } ] } ], "bundled": true }