1. Create a Return Request
You can use it to create return request packages for order packages that arrive without a return code. After creating a package with this service, you can get the return packages with Getting Returned Orders
Create a Return Request (as-accepted)
-
The refund request you will create will be created in the status of "Created". You can use the "createClaim" service only for return requests you will "approve."
-
Using this servise, you will be automatically approved the claim. This service should be used at the end of the refund process.
-
You need to send "storeFrontCode" as Header Parameter.
POST createClaim
Sample Service Request
{
"claimItems": [
{
"orderLineId": 456,
"quantity": 1
},
{
"orderLineId": 9876,
"quantity": 2
}
],
"orderParentNumber": "1234567"
}Sample Service Response
{
"claimId": "string",
"claimItemIds": [
"string"
]
}| Field Name | Details |
|---|---|
| quantity | It is the quantity information of the product you want to create a return request. |
| orderParentNumber | The number of the order. |
| orderLineId | You can use the id value of the line id of the order |
Updated 10 days ago