{ "opencollection": "1.0.0", "info": { "name": "Tines REST Actions Credentials API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Credentials", "type": "folder" }, "items": [ { "info": { "name": "List credentials", "type": "http" }, "http": { "method": "GET", "url": "https://{tenantDomain}/api/v1/user_credentials", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination (default 1)" }, { "name": "per_page", "value": "", "type": "query", "description": "Number of results per page (default 20, max 500)" }, { "name": "team_id", "value": "", "type": "query", "description": "Filter credentials by team ID" } ] }, "docs": "Returns a paginated list of credentials accessible by the API key." }, { "info": { "name": "Create a credential", "type": "http" }, "http": { "method": "POST", "url": "https://{tenantDomain}/api/v1/user_credentials", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new credential for use in stories and actions." }, { "info": { "name": "Get a credential", "type": "http" }, "http": { "method": "GET", "url": "https://{tenantDomain}/api/v1/user_credentials/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique numeric identifier of the resource" } ] }, "docs": "Returns details for a specific credential by ID." }, { "info": { "name": "Update a credential", "type": "http" }, "http": { "method": "PUT", "url": "https://{tenantDomain}/api/v1/user_credentials/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique numeric identifier of the resource" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing credential by ID." }, { "info": { "name": "Delete a credential", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tenantDomain}/api/v1/user_credentials/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique numeric identifier of the resource" } ] }, "docs": "Deletes a credential by ID." } ] } ], "bundled": true }