{ "opencollection": "1.0.0", "info": { "name": "Auth0 Authentication actions Stores API", "version": "1.0.0" }, "items": [ { "info": { "name": "Stores", "type": "folder" }, "items": [ { "info": { "name": "List all stores", "type": "http" }, "http": { "method": "GET", "url": "{auth0_domain}/stores", "params": [ { "name": "page_size", "value": "", "type": "query" }, { "name": "continuation_token", "value": "", "type": "query" }, { "name": "name", "value": "", "type": "query", "description": "The name parameter instructs the API to only include results that match that name.Multiple results may be returned. Only exact matches will be returned; substring matches and regexes will not be evaluated" } ] }, "docs": "Returns a paginated list of OpenFGA stores and a continuation token to get additional stores.\nThe continuation token will be empty if there are no more stores.\n" }, { "info": { "name": "Create a store", "type": "http" }, "http": { "method": "POST", "url": "{auth0_domain}/stores" }, "docs": "Create a unique OpenFGA store which will be used to store authorization models and relationship tuples." }, { "info": { "name": "Get a store", "type": "http" }, "http": { "method": "GET", "url": "{auth0_domain}/stores/:store_id", "params": [ { "name": "store_id", "value": "", "type": "path" } ] }, "docs": "Returns an OpenFGA store by its identifier" }, { "info": { "name": "Delete a store", "type": "http" }, "http": { "method": "DELETE", "url": "{auth0_domain}/stores/:store_id", "params": [ { "name": "store_id", "value": "", "type": "path" } ] }, "docs": "Delete an OpenFGA store. This does not delete the data associated with the store, like tuples or authorization models." } ] } ], "bundled": true }