{ "opencollection": "1.0.0", "info": { "name": "Nutshell Forms API", "version": "2.0.0" }, "items": [ { "info": { "name": "Forms", "type": "folder" }, "items": [ { "info": { "name": "Get all forms", "type": "http" }, "http": { "method": "GET", "url": "https://app.nutshell.com/rest/forms", "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get all non-archived nutshell forms along with the IDs of the fields used in each form." }, { "info": { "name": "Get a form", "type": "http" }, "http": { "method": "GET", "url": "https://app.nutshell.com/rest/forms/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Form ID" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get a single form by the ID provided. The fields used in the form are also returned in the response." }, { "info": { "name": "Get a form field", "type": "http" }, "http": { "method": "GET", "url": "https://app.nutshell.com/rest/forms/:fieldId", "params": [ { "name": "fieldId", "value": "", "type": "path", "description": "Field Id" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get a single form field by the ID provided." } ] } ], "bundled": true }