{ "opencollection": "1.0.0", "info": { "name": "Didomi consents/events organizations API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "organizations", "type": "folder" }, "items": [ { "info": { "name": "Retrieve a list of organizations", "type": "http" }, "http": { "method": "GET", "url": "https://api.didomi.io/v1/organizations", "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 organizations the user belongs to" }, { "info": { "name": "Create an organization", "type": "http" }, "http": { "method": "POST", "url": "https://api.didomi.io/v1/organizations", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new organization" }, { "info": { "name": "Retrieve an organization", "type": "http" }, "http": { "method": "GET", "url": "https://api.didomi.io/v1/organizations/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the organization to retrieve" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a single organization with the given ID" }, { "info": { "name": "Update an organization", "type": "http" }, "http": { "method": "PUT", "url": "https://api.didomi.io/v1/organizations/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the organization to update" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update an existing organization and replace all its properties" }, { "info": { "name": "Patch an organization", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.didomi.io/v1/organizations/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the organization to patch" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Partially update an organization" }, { "info": { "name": "Delete an organization", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.didomi.io/v1/organizations/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the organization to delete" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete an existing organization" } ] } ], "bundled": true }