Skip to content

List incidents (cursor-paginated)

GET
/incidents
curl --request GET \
--url 'https://api.vendorica.com/v1/incidents?limit=50&status=open&priority=low' \
--header 'Authorization: Bearer <token>'

Cursor-paginated read of the incident register. Pass ?cursor=<opaque>&limit=<n> to advance; the response carries cursor.nextCursor (null on the last page) plus cursor.hasMore. The legacy ?page= parameter returns 400. Ordering is newest-first by creation time — NOT by reportedAt, which a caller supplies and which a backfilled alert can therefore place anywhere in the sequence. Filter on reportedFrom / reportedTo to ask about awareness time.

cursor
string
>= 1 characters
limit
integer
default: 50 >= 1 <= 500
status
string
Allowed values: open in_progress resolved closed
priority
string
Allowed values: low medium high critical
vendorId
string format: uuid
reportedFrom
string format: date-time
reportedTo
string format: date-time

Success

Media typeapplication/json
object
success
required
boolean
data
required
Array<object>
object
id
required
string format: uuid
organizationId
required
string format: uuid
title
required
string
description
required
string | null
status
required
string
priority
required
string | null
category
required
string | null
incidentType
required
string | null
reportedAt
required
string | null format: date-time
createdAt
required
string | null format: date-time
updatedAt
required
string | null format: date-time
resolvedAt
required
string | null format: date-time
closedAt
required
string | null format: date-time
dueDate
required
string | null
vendorId
required
string | null format: uuid
assignedTo
required
string | null format: uuid
reportedBy
required
string format: uuid
businessImpact
required
string | null
affectedCustomers
required
integer | null
affectedSystems
required
string | null
affectedServices
required
string | null
impactAssessment
required
string | null
escalationLevel
required
integer | null
estimatedFinancialImpact
required
string | null
idempotencyKey
required
string | null
key
additional properties
timestamp
required
string format: date-time
requestId
string
message
string
cursor
required
object
nextCursor
required
string | null
hasMore
required
boolean
limit
required
integer
Example
{
"success": true,
"data": [
{
"id": "4efa7204-5a41-4f72-861b-9ee3047b25a5",
"organizationId": "31311b39-ab4d-4de1-8d94-4ac6a271af66",
"title": "string",
"description": "string",
"status": "string",
"priority": "string",
"category": "string",
"incidentType": "string",
"reportedAt": "2026-08-19T09:41:12.004Z",
"createdAt": "2026-08-19T09:41:12.004Z",
"updatedAt": "2026-08-19T09:41:12.004Z",
"resolvedAt": "2026-08-19T09:41:12.004Z",
"closedAt": "2026-08-19T09:41:12.004Z",
"dueDate": "string",
"vendorId": "d0858aae-ee39-4cc4-8b33-dd4523a54d53",
"assignedTo": "a87c5ad0-0dc2-4896-8eed-528f9a98f0d1",
"reportedBy": "038b4065-fb36-4225-8c9c-81d2606063e2",
"businessImpact": "string",
"affectedCustomers": 1,
"affectedSystems": "string",
"affectedServices": "string",
"impactAssessment": "string",
"escalationLevel": 1,
"estimatedFinancialImpact": "string",
"idempotencyKey": "string"
}
],
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H",
"message": "string",
"cursor": {
"nextCursor": "string",
"hasMore": true,
"limit": 1
}
}

Validation error

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Bad request",
"code": "BAD_REQUEST",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}

Unauthorized

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Unauthorized",
"code": "UNAUTHORIZED",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}

Forbidden — missing scope

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Forbidden",
"code": "FORBIDDEN",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}

Not found

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Resource not found",
"code": "NOT_FOUND",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}

Rate limit exceeded

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Too many requests",
"code": "TOO_MANY_REQUESTS",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}