EaserixDocs
DevelopersAPI referenceTasksIssues

List issues

Issues across the org's teams, ordered by position then number, capped at 1000 rows (no pagination — the cap is the contract). Filters combine with AND; q is a case-insensitive title substring match (LIKE wildcards in q are escaped and match literally).

View as Markdown
GET
/v1/issues
AuthorizationBearer <token>

In: header

Query Parameters

team_id?string

Restrict to one team.

Formatuuid
project_id?string
Formatuuid
state_id?string
Formatuuid
assignee_id?string
Formatuuid
cycle_id?string
Formatuuid
parent_id?string
Formatuuid
q?string

Case-insensitive title substring.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/issues"
{  "issues": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "teamId": "a4ede8ba-7c0a-4485-8763-cbd9b282fbec",      "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",      "number": 0,      "title": "string",      "description": "string",      "stateId": "871bb69c-5872-42b2-88b0-72e9da663aaa",      "state": {        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",        "teamId": "a4ede8ba-7c0a-4485-8763-cbd9b282fbec",        "name": "string",        "type": "backlog",        "color": "string",        "position": 0      },      "priority": 0,      "assigneeId": "665a9750-71bd-4b96-bacd-9efa4ae022dd",      "assignee": {        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",        "userId": "2c4a230c-5085-4924-a3e1-25fb4fc5965b",        "name": "string",        "email": "string",        "created": "2019-08-24T14:15:22Z"      },      "creatorId": "688ebf54-d343-4104-8711-82c2feac534a",      "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",      "cycleId": "811bdbf8-a42f-4f8c-b62e-39c77332ffe1",      "estimate": 0,      "position": 0,      "dueDate": "2019-08-24",      "labels": [        {          "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",          "teamId": "a4ede8ba-7c0a-4485-8763-cbd9b282fbec",          "name": "string",          "color": "string"        }      ],      "created": "2019-08-24T14:15:22Z",      "modified": "2019-08-24T14:15:22Z",      "completedAt": "2019-08-24T14:15:22Z"    }  ]}