Claims
Specifies the page number of the current dataset.
1
Specifies the row count of the current page.
10
Filters the claims by type.
cancel
Possible values: Filters the claims by status. Possible values are:
open
: The claim is open.waiting
: The claim is waiting for approval.approved
: The claim has been approved.rejected
: The claim has been rejected.completed
: The claim has been completed.
waiting
Possible values: Multiple values can be provided with a comma-separated list. Filters the claims by status. Possible values are:
open
: The claim is open.waiting
: The claim is waiting for approval.approved
: The claim has been approved.rejected
: The claim has been rejected.completed
: The claim has been completed.
Filters data where the "updated_at" field is exactly equal to a specified value.
Filters data where the "updated_at" field is greater than or equal to a specified value.
Filters data where the "updated_at" field is less than or equal to a specified value.
Filters data where the "created_at" field is exactly equal to a specified value.
Filters data where the "created_at" field is greater than or equal to a specified value.
Filters data where the "created_at" field is less than or equal to a specified value.
Specifies the communication language of the API.
GET /api/i2/claims/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "https://seller-center.akinon.com/api/i2/resource?page=2&limit=10",
"previous": null,
"results": [
{
"id": "f3909f53-a535-40cc-8d50-de0cd047aedd",
"package_item": "2595053219311870-1",
"product": "AKN-TSHRT-RD",
"reason": {
"id": "8b33a4f8-a580-42e1-879f-6f31e296eb1b",
"subject": "Damaged",
"translations": {
"en-us": "Damaged",
"en-gb": "Damaged"
}
},
"detail": "The product was damaged during shipment.",
"return_code": "R-5124412",
"return_tracking_number": "3457623412",
"return_tracking_url": "https://akinon.com/track/3457623412",
"type": "refund",
"status": "waiting",
"updated_at": "2025-07-14T11:22:06.372Z",
"created_at": "2025-07-14T11:22:06.372Z"
}
]
}
Unique identifier for the claim.
f3909f53-a535-40cc-8d50-de0cd047aedd
Specifies the communication language of the API.
POST /api/i2/claims/{id}/approve/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Unique identifier for the claim.
f3909f53-a535-40cc-8d50-de0cd047aedd
Specifies the communication language of the API.
Reason for rejecting the claim.
Damaged
URL for the image associated with the claim.
https://akinon.com/images/claim/2595053219311870-1.jpg
POST /api/i2/claims/{id}/reject/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 88
{
"reason": "Damaged",
"images": [
"https://akinon.com/images/claim/2595053219311870-1.jpg"
]
}
No content
Specifies the page number of the current dataset.
1
Specifies the row count of the current page.
10
Specifies the communication language of the API.
GET /api/i2/claim-reasons/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "https://seller-center.akinon.com/api/i2/resource?page=2&limit=10",
"previous": null,
"results": [
{
"id": "a308d734-96d2-4f1e-a804-0f8f01bbc20d",
"subject": "Damaged",
"translations": {
"en-us": "Damaged",
"en-gb": "Damaged"
},
"type": "refund",
"updated_at": "2025-07-14T11:22:06.372Z",
"created_at": "2025-07-14T11:22:06.372Z"
}
]
}
Was this helpful?