{ "opencollection": "1.0.0", "info": { "name": "Tines REST Actions Teams API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Teams", "type": "folder" }, "items": [ { "info": { "name": "List teams", "type": "http" }, "http": { "method": "GET", "url": "https://{tenantDomain}/api/v1/teams", "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)" } ] }, "docs": "Returns a list of teams accessible by the API key." }, { "info": { "name": "Create a team", "type": "http" }, "http": { "method": "POST", "url": "https://{tenantDomain}/api/v1/teams", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new team." }, { "info": { "name": "Get a team", "type": "http" }, "http": { "method": "GET", "url": "https://{tenantDomain}/api/v1/teams/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique numeric identifier of the resource" } ] }, "docs": "Returns details for a specific team by ID." }, { "info": { "name": "Update a team", "type": "http" }, "http": { "method": "PUT", "url": "https://{tenantDomain}/api/v1/teams/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique numeric identifier of the resource" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing team by ID." }, { "info": { "name": "Delete a team", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tenantDomain}/api/v1/teams/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique numeric identifier of the resource" } ] }, "docs": "Deletes a team by ID." } ] } ], "bundled": true }