curl --request PATCH \
--url https://platform.versori.com/api/v2/o/{organisation_id}/issues/{issue_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reason": "error",
"message": "<string>",
"title": "<string>",
"labels": {},
"annotations": {},
"severity": "high",
"resolvedAt": "2023-11-07T05:31:56Z",
"resolutionStatus": "resolved",
"status": "open"
}
'{
"id": "<string>",
"organisationId": "<string>",
"projectId": "<string>",
"environmentId": "<string>",
"status": "open",
"reason": "error",
"message": "<string>",
"title": "<string>",
"labels": {},
"annotations": {},
"createdAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z",
"seenCount": 123,
"resolutionStatus": "resolved",
"resolvedAt": "2023-11-07T05:31:56Z",
"severity": "high"
}UpdateIssue updates the editable fields of an issue. Any fields not provided in the request body will not be changed.
curl --request PATCH \
--url https://platform.versori.com/api/v2/o/{organisation_id}/issues/{issue_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reason": "error",
"message": "<string>",
"title": "<string>",
"labels": {},
"annotations": {},
"severity": "high",
"resolvedAt": "2023-11-07T05:31:56Z",
"resolutionStatus": "resolved",
"status": "open"
}
'{
"id": "<string>",
"organisationId": "<string>",
"projectId": "<string>",
"environmentId": "<string>",
"status": "open",
"reason": "error",
"message": "<string>",
"title": "<string>",
"labels": {},
"annotations": {},
"createdAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z",
"seenCount": 123,
"resolutionStatus": "resolved",
"resolvedAt": "2023-11-07T05:31:56Z",
"severity": "high"
}Bearer token authentication used by the Versori Platform. External consumers must provide an API key, however internal consumers must provide a JWT id_token issued by our IdP.
Reason for the issue creation
error, manual Detailed message of the issue
Title of the issue
Key-value pairs for searchable labels
Show child attributes
Key-value pairs for additional non-searchable information
Show child attributes
Severity level of the issue
high, low, medium Timestamp when the issue was resolved
Status of the issue resolution
resolved, negated, ignored Current status of the issue
open, closed, acked, resolved OK
Unique identifier for the issue (ULID)
ID of the organization the isszue belongs to
ID of the project the issue belongs to
ID of the environment the issue occurred in
Current status of the issue
open, closed, acked, resolved Reason for the issue creation
error, manual Detailed message of the issue
Title of the issue
Key-value pairs for searchable labels
Show child attributes
Key-value pairs for additional non-searchable information
Show child attributes
Timestamp when the issue was created
Timestamp when the issue was last seen
Number of times the issue has been seen
Status of the issue resolution
resolved, negated, ignored Timestamp when the issue was resolved
Severity level of the issue
high, low, medium