Error Reports
Retrieve a specific Error Report by ID
Unique identifier of the resource
1
GET /api/v1/error_reports/{id} HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"id": 1,
"action_content_type": 1,
"action_object_id": 1,
"action": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"target_content_type": 1,
"target_object_id": "text",
"target": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"obj_modified_date": "2025-06-27T08:08:34.480Z",
"error_code": "text",
"error_desc": "text",
"is_ok": false,
"raw_request": "text",
"raw_response": "text",
"created_date": "2025-06-27T08:08:34.480Z",
"updated_date": "2025-06-27T08:08:34.480Z"
}
Delete a specific Error Report by ID
Unique identifier of the resource
1
DELETE /api/v1/error_reports/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Partial update a specific Error Report by ID
Unique identifier of the resource
1
Error report ID
Content type ID for action
Object ID for action
Content type ID for target
Object ID for target
Object modification date
Error code
Error description
Status flag
false
Raw request data
Raw response data
Creation timestamp
Last update timestamp
PATCH /api/v1/error_reports/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 336
{
"action_content_type": 1,
"action_object_id": 1,
"action": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"target_content_type": 1,
"target_object_id": "text",
"target": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"obj_modified_date": "2025-06-27T08:08:34.480Z",
"error_code": "text",
"error_desc": "text",
"is_ok": false,
"raw_request": "text",
"raw_response": "text"
}
No content
List Error Reports
Filter by catalog name
Filter by target content type model name
Filter by target content type ID
Filter by target object ID
Filter by action content type model name
Filter by action content type ID
Filter by multiple action object IDs
Filter by status flag
GET /api/v1/error_reports/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"action_content_type": 1,
"action_object_id": 1,
"action": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"target_content_type": 1,
"target_object_id": "text",
"target": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"obj_modified_date": "2025-06-27T08:08:34.480Z",
"error_code": "text",
"error_desc": "text",
"is_ok": false,
"raw_request": "text",
"raw_response": "text",
"created_date": "2025-06-27T08:08:34.480Z",
"updated_date": "2025-06-27T08:08:34.480Z"
}
]
Get list of city error reports
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
GET /api/v1/error_reports/city HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"action_content_type": 1,
"action_object_id": 1,
"action": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"target_content_type": 1,
"target_object_id": "text",
"target": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"obj_modified_date": "2025-06-27T08:08:34.480Z",
"error_code": "text",
"error_desc": "text",
"is_ok": false,
"raw_request": "text",
"raw_response": "text",
"created_date": "2025-06-27T08:08:34.480Z",
"updated_date": "2025-06-27T08:08:34.480Z"
}
]
Get list of township error reports
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
GET /api/v1/error_reports/township/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"action_content_type": 1,
"action_object_id": 1,
"action": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"target_content_type": 1,
"target_object_id": "text",
"target": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"obj_modified_date": "2025-06-27T08:08:34.480Z",
"error_code": "text",
"error_desc": "text",
"is_ok": false,
"raw_request": "text",
"raw_response": "text",
"created_date": "2025-06-27T08:08:34.480Z",
"updated_date": "2025-06-27T08:08:34.480Z"
}
]
Get list of product error reports
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
GET /api/v1/error_reports/product/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"action_content_type": 1,
"action_object_id": 1,
"action": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"target_content_type": 1,
"target_object_id": "text",
"target": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"obj_modified_date": "2025-06-27T08:08:34.480Z",
"error_code": "text",
"error_desc": "text",
"is_ok": false,
"raw_request": "text",
"raw_response": "text",
"created_date": "2025-06-27T08:08:34.480Z",
"updated_date": "2025-06-27T08:08:34.480Z"
}
]
Partial update a specific Error Report by ID with Action Object ID
Unique identifier of the resource
1
PATCH /api/v1/error_reports/{id}/update_action_object_id/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 22
{
"action_object_id": 1
}
{
"id": 1,
"action_content_type": 1,
"action_object_id": 1,
"action": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"target_content_type": 1,
"target_object_id": "text",
"target": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"obj_modified_date": "2025-06-27T08:08:34.480Z",
"error_code": "text",
"error_desc": "text",
"is_ok": false,
"raw_request": "text",
"raw_response": "text",
"created_date": "2025-06-27T08:08:34.480Z",
"updated_date": "2025-06-27T08:08:34.480Z"
}
Update error code of error report
Unique identifier of the resource
1
PATCH /api/v1/error_reports/{id}/update_error_code/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 21
{
"error_code": "text"
}
{
"id": 1,
"action_content_type": 1,
"action_object_id": 1,
"action": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"target_content_type": 1,
"target_object_id": "text",
"target": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"obj_modified_date": "2025-06-27T08:08:34.480Z",
"error_code": "text",
"error_desc": "text",
"is_ok": false,
"raw_request": "text",
"raw_response": "text",
"created_date": "2025-06-27T08:08:34.480Z",
"updated_date": "2025-06-27T08:08:34.480Z"
}
Was this helpful?