PUT /errors/{id}.json
Path parameters
-
Numeric ID of the instance
Minimum value is
1
.
Body Required
-
createdAt string(date-time)
Created at
-
Entry
-
id integer(int32)
Id
-
message string | null
Message
-
purchaseId integer(int32) | null
Purchase
-
purchaseInvoiceId integer(int32) | null
Purchase invoice
-
Resolved
Default value is
false
. -
stackTrace string | null
Stack trace
-
status string | null
Status
Values are
error
orsuccess
. -
updatedAt string(date-time)
Updated at
-
variantId integer(int32) | null
Variant
PUT /errors/{id}.json
curl \
-X PUT http://api.example.com/v1/errors/{id}.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"createdAt":"2024-05-04T09:42:00+00:00","entryId":"string","id":42,"message":"string","problem":{},"purchaseId":42,"purchaseInvoiceId":42,"resolved":false,"stackTrace":"string","status":"error","updatedAt":"2024-05-04T09:42:00+00:00","variantId":42}'
Request example
{
"createdAt": "2024-05-04T09:42:00+00:00",
"entryId": "string",
"id": 42,
"message": "string",
"problem": {},
"purchaseId": 42,
"purchaseInvoiceId": 42,
"resolved": false,
"stackTrace": "string",
"status": "error",
"updatedAt": "2024-05-04T09:42:00+00:00",
"variantId": 42
}