User Issues

List and view details of issues filed by the authenticated user.

List User Issues

GET/ret11/user-issues
Auth Required

Include a Bearer token.

Parameters

ParameterInRequiredDescription
pagequeryoptionalPage number. Default: 1
limitqueryoptionalItems per page. Default: 10
issueStatusqueryoptionalFilter by status: "OPEN" | "RESOLVED" | "CLOSED"
userIdqueryoptionalRequired only for service-account tokens

Response

FieldTypeDescription
data.issues[]arrayList of issue summaries
data.totalnumberTotal issue count for pagination
issues[].idstringIssue identifier
issues[].transactionIdstringONDC transaction ID linked to this issue
issues[].levelstringIssue escalation level. E.g., "ISSUE"
issues[].statusstringCurrent issue status: "OPEN" | "RESOLVED" | "CLOSED"
issues[].subCategorystringSub-category code. E.g., "ORD101"
issues[].categorystringIssue category. E.g., "ORDER"
issues[].shortDescstringShort issue description
issues[].longDescstringFull issue description
issues[].customerNamestringName of the customer who filed the issue
issues[].orderIdstringLinked order ID
issues[].createdAtstringISO 8601 creation timestamp
issues[].updatedAtstringISO 8601 last-updated timestamp
{
  "data": {
    "issues": [
      {
        "id": "019c3f2a-1234-7abc-8def-0123456789ab",
        "transactionId": "56a55c3f-8052-4bb6-91d6-47e1a178a0c0",
        "level": "ISSUE",
        "status": "OPEN",
        "subCategory": "ORD101",
        "category": "ORDER",
        "shortDesc": "Order not received",
        "longDesc": "I placed an order but it was never delivered.",
        "customerName": "John Doe",
        "orderId": "019d1476113e75598fa4d0389075cef0",
        "createdAt": "2026-06-10T09:00:00.000Z",
        "updatedAt": "2026-06-10T09:00:00.000Z"
      }
    ],
    "total": 42
  }
}
Escalating an Issue

If a resolution is not satisfactory, use reply-issue with descriptorCode: "ESCALATE" to escalate to the next level.