{ "opencollection": "1.0.0", "info": { "name": "Auth0 Authentication actions forms API", "version": "1.0.0" }, "items": [ { "info": { "name": "forms", "type": "folder" }, "items": [ { "info": { "name": "Get Forms", "type": "http" }, "http": { "method": "GET", "url": "{auth0_domain}/forms", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page index of the results to return. First page is 0." }, { "name": "per_page", "value": "", "type": "query", "description": "Number of results per page. Defaults to 50." }, { "name": "include_totals", "value": "", "type": "query", "description": "Return results inside an object that contains the total result count (true) or as a direct array of results (false, default)." }, { "name": "hydrate", "value": "", "type": "query", "description": "Query parameter to hydrate the response with additional data" } ] }, "docs": "Get Forms" }, { "info": { "name": "Create a Form", "type": "http" }, "http": { "method": "POST", "url": "{auth0_domain}/forms", "body": { "type": "json", "data": "{}" } }, "docs": "Create a Form" }, { "info": { "name": "Get a Form", "type": "http" }, "http": { "method": "GET", "url": "{auth0_domain}/forms/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the form to retrieve." }, { "name": "hydrate", "value": "", "type": "query", "description": "Query parameter to hydrate the response with additional data" } ] }, "docs": "Get a Form" }, { "info": { "name": "Update a Form", "type": "http" }, "http": { "method": "PATCH", "url": "{auth0_domain}/forms/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the form to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a Form" }, { "info": { "name": "Delete a Form", "type": "http" }, "http": { "method": "DELETE", "url": "{auth0_domain}/forms/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the form to delete." } ] }, "docs": "Delete a Form" } ] } ], "bundled": true }