JavaScript
import Tembo from '@tembo-io/sdk'; const client = new Tembo({ apiKey: 'My API Key', }); const tasks = await client.task.list(); console.log(tasks.issues);
{ "issues": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "title": "<string>", "description": "<string>", "status": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a" } ], "meta": { "totalCount": 123, "totalPages": 123, "currentPage": 123, "pageSize": 123, "hasNext": true, "hasPrevious": true } }
Gets a paginated list of issues for the organization
Number of items to return per page (max 100)
1 <= x <= 100
10
Page number to retrieve (starts from 1)
x >= 1
1
Successfully retrieved paginated list of issues
Show child attributes
Was this page helpful?