Get an incident
GET
/incidents/{id}
const url = 'https://api.vendorica.com/v1/incidents/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vendorica.com/v1/incidents/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Authorization: Bearer <token>'Returns one incident from the calling key’s organization, plus a reportedByUser object naming the person the record is attributed to — for an incident filed over this API that is the key’s owner. An incident in another organization is a 404, not a 403.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Responses
Section titled “Responses”Success
Media typeapplication/json
object
success
required
boolean
data
required
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
Example
{ "success": true, "data": { "id": "98d8e0c4-6369-47b2-809e-8ba33095d7e5", "organizationId": "bab416f9-e480-4d21-87c7-0c863058b0a6", "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": "be48376e-f7af-4f04-8fe0-38059ef82993", "assignedTo": "850b0790-025c-4ad6-8d45-ad4fafafcd11", "reportedBy": "af301e25-efbf-4765-8068-f592ab3a9b22", "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"}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"}