{ "opencollection": "1.0.0", "info": { "name": "Retool Management Apps API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Apps", "type": "folder" }, "items": [ { "info": { "name": "List Apps", "type": "http" }, "http": { "method": "GET", "url": "https://api.retool.com/v1/apps", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination (1-based)." }, { "name": "pageSize", "value": "", "type": "query", "description": "Number of records per page." } ] }, "docs": "Retrieves a list of all applications within the Retool organization. Returns app metadata including name, description, creator, and folder location." }, { "info": { "name": "Create App", "type": "http" }, "http": { "method": "POST", "url": "https://api.retool.com/v1/apps", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new application within the Retool organization. The app will be empty and can be edited in the Retool visual editor." }, { "info": { "name": "Get App", "type": "http" }, "http": { "method": "GET", "url": "https://api.retool.com/v1/apps/:appId", "params": [ { "name": "appId", "value": "", "type": "path", "description": "The unique identifier of the app." } ] }, "docs": "Retrieves the details of a specific app by its unique identifier. Returns the app's metadata, configuration, and access information." }, { "info": { "name": "Update App", "type": "http" }, "http": { "method": "PUT", "url": "https://api.retool.com/v1/apps/:appId", "params": [ { "name": "appId", "value": "", "type": "path", "description": "The unique identifier of the app." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the metadata of a specific app such as its name, description, or folder location." }, { "info": { "name": "Delete App", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.retool.com/v1/apps/:appId", "params": [ { "name": "appId", "value": "", "type": "path", "description": "The unique identifier of the app." } ] }, "docs": "Permanently deletes an app from the Retool organization. This action cannot be undone." } ] } ], "bundled": true }