Incidents

Soda Cloud API Incidents Endpoints

Update incident

post

This endpoint enables you to update an existing incident title, severity, status, or description in your organization's Soda Cloud account.

Authorization

Only users with Manage incident permission can update incidents. Soda Cloud Admins have permission to update all incidents.See Manage dataset roles for more information.

Authentication

User authentication required: true

This endpoint enforces authentication using the API keys you provide in the Basic authentication header.

Tags

Incidents

Rate limiting

10 requests/60 seconds

Authorizations
Path parameters
incidentIdstringRequired
Body
descriptionstringOptional
resolutionNotesstringOptional
severityobject · enumOptionalPossible values:
statusobject · enumOptionalPossible values:
titlestringOptional
Responses
200
Successful response
application/json
post
POST /api/v1/incidents/{incidentId} HTTP/1.1
Host: cloud.soda.io
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 101

{
  "description": "text",
  "resolutionNotes": "text",
  "severity": "minor",
  "status": "reported",
  "title": "text"
}
{
  "description": "text",
  "resolutionNotes": "text",
  "severity": "minor",
  "cloudUrl": "text",
  "id": "text",
  "name": "text",
  "number": 1,
  "status": "reported"
}

Was this helpful?