{ "opencollection": "1.0.0", "info": { "name": "PolyAPI Platform API Functions Client Functions API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Client Functions", "type": "folder" }, "items": [ { "info": { "name": "PolyAPI List client functions", "type": "http" }, "http": { "method": "GET", "url": "https://na1.polyapi.io/functions/client", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return." }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip for pagination." } ] }, "docs": "Retrieve a list of all client functions in the current environment." }, { "info": { "name": "PolyAPI Create a client function", "type": "http" }, "http": { "method": "POST", "url": "https://na1.polyapi.io/functions/client", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new shared client function." }, { "info": { "name": "PolyAPI Get a client function", "type": "http" }, "http": { "method": "GET", "url": "https://na1.polyapi.io/functions/client/:functionId", "params": [ { "name": "functionId", "value": "", "type": "path", "description": "The unique identifier of the function." } ] }, "docs": "Retrieve details of a specific client function by its ID." }, { "info": { "name": "PolyAPI Update a client function", "type": "http" }, "http": { "method": "PATCH", "url": "https://na1.polyapi.io/functions/client/:functionId", "params": [ { "name": "functionId", "value": "", "type": "path", "description": "The unique identifier of the function." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing client function." }, { "info": { "name": "PolyAPI Delete a client function", "type": "http" }, "http": { "method": "DELETE", "url": "https://na1.polyapi.io/functions/client/:functionId", "params": [ { "name": "functionId", "value": "", "type": "path", "description": "The unique identifier of the function." } ] }, "docs": "Delete a specific client function by its ID." } ] } ], "bundled": true }