Issues
Issue tracking and reporting
Retrieves issues with optional filtering
Authorizations
Query parameters
pageinteger · min: 1OptionalDefault:
Page number (1-indexed)
1
limitinteger · min: 1 · max: 100OptionalDefault:
Items per page (max 100)
10
projectstringOptional
Filter by project ID
statusstring · enumOptionalPossible values:
Filter by issue status
assigneestringOptional
Filter by assignee email
createdBystringOptional
Filter by creator email
Responses
201
Issues retrieved successfully
application/json
get
curl -X GET "https://imeritapi.ango.ai/v2/issues?project=507f1f77bcf86cd799439011&status=Open&page=1&limit=10" \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json"
201
Issues retrieved successfully
{
"status": "success",
"data": {
"issue": [
{
"_id": "text",
"title": "text",
"content": "text",
"project": "text",
"asset": "text",
"labelTask": "text",
"status": "Open",
"createdBy": "text",
"assignee": "text",
"errorType": "text",
"errorCode": "text",
"position": "text",
"points": [
{}
],
"contentMentions": [
{
"userEmail": "text",
"userName": "text"
}
],
"createdAt": "2025-10-07T12:40:37.114Z"
}
]
}
}
Creates a new issue for a task
Authorizations
Body
labelTaskstringRequired
Task ID to create issue for
titlestringOptional
contentstringOptional
positionstringOptional
pointsobject[]Optional
errorTypestringOptional
errorCodestringOptional
Responses
201
Issue created successfully
application/json
400
Bad request - validation error
application/json
post
POST /v2/issues HTTP/1.1
Host: imeritapi.ango.ai
apikey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 181
{
"labelTask": "text",
"title": "text",
"content": "text",
"contentMentions": [
{
"userEmail": "text",
"userName": "text"
}
],
"position": "text",
"points": [
{}
],
"errorType": "text",
"errorCode": "text"
}
{
"status": "success",
"data": {
"issue": {
"_id": "text",
"title": "text",
"content": "text",
"project": "text",
"asset": "text",
"labelTask": "text",
"status": "Open",
"createdBy": "text",
"assignee": "text",
"errorType": "text",
"errorCode": "text",
"position": "text",
"points": [
{}
],
"contentMentions": [
{
"userEmail": "text",
"userName": "text"
}
],
"createdAt": "2025-10-07T12:40:37.114Z"
}
}
}
Deletes an existing issue
Authorizations
Path parameters
issueIdstringRequired
Issue ID
Responses
201
Issue deleted successfully
application/json
delete
DELETE /v2/issues/{issueId} HTTP/1.1
Host: imeritapi.ango.ai
apikey: YOUR_API_KEY
Accept: */*
201
Issue deleted successfully
{
"status": "success",
"data": {
"issue": {
"_id": "text",
"title": "text",
"content": "text",
"project": "text",
"asset": "text",
"labelTask": "text",
"status": "Open",
"createdBy": "text",
"assignee": "text",
"errorType": "text",
"errorCode": "text",
"position": "text",
"points": [
{}
],
"contentMentions": [
{
"userEmail": "text",
"userName": "text"
}
],
"createdAt": "2025-10-07T12:40:37.114Z"
}
}
}