Create a Return

This API allows you to create a return request in the Eshopbox system. Only customer returns can be created, and the order must be fulfilled and delivered in the Eshopbox workspace before initiating a

Endpoint

POST http://wms.eshopbox.com/api/return

Headers

Name
Type
Description

Authorization

string

Bearer Token to grant access to the API

Request Body

Name
Mandatory
Type
Description

externalChannelID

No

string

Name of the sales channel generated by Eshopbox

customerReturnNumber

Yes

string

Unique return number against a sales channel

assignCourier

Yes

boolean

true to assign return tracking ID, false if not required

customerOrderId

Yes

string

Unique order number against a sales channel (Previously customerOrderNumber)

pickup_type

Yes

string

Pickup type for return, default: "reverse"

refundAmount

Yes

string

Amount to be refunded on the return request

isCOD

Yes

boolean

true if the order is Cash on Delivery (COD), false if prepaid. Since we are created return, if will be false.

return_request_date

Yes

string

Return request date and time (cannot be NULL, even though it's optional)

repaymentType

No

string

Refund mode

Pickup Address (Object)

Name
Mandatory
Type
Description

customerName

Yes

string

Name of the pickup customer

addressLine1

Yes

string

Pickup address line 1

addressLine2

Yes

string

Pickup address line 2

city

Yes

string

Pickup address city

state

Yes

string

Pickup address state

postalCode

Yes

string

Pickup address PIN code

countryCode

Yes

string

Pickup address country code

countryName

Yes

string

Pickup address country name

contactPhone

Yes

string

Pickup address contact number

email

Yes

string

Pickup address email address

Items (Array)

Name
Mandatory
Type
Description

lineItemSequenceNumber

No

string

Unique item ID in the client system

itemID

No

string

Product availability identifier on a channel

sku

Yes

string

SKU of the product (previously SKU)

quantity

Yes

number

Quantity of the item to be returned

returnReason

Yes

string

Reason for return

additionalInfo.image

No

string

Image shared by the customer

additionalInfo.comment

No

string

Remarks shared by the customer

itemImage

No

string

Product image

Response

{
    "externalChannelID": "TATA CLIQ VELOCY KAPAS KRAFT",
    "customerReturnNumber": "R4191129_1",
    "customerOrderNumber": "300975272",
    "pickupType": "reverse",
    "status": "CREATED",
    "pickupAddress": {
        "pickup_customerName": "Sam",
        "pickup_addressLine1": "Green Soul, reliable space",
        "pickup_addressLine2": "thane",
        "pickup_city": "Thane",
        "pickup_state": "Maharashtra",
        "pickup_postalCode": "421501",
        "pickup_countryCode": "IN",
        "pickup_countryName": "India",
        "pickup_contactPhone": "999999999",
        "pickup_email": "sam@gmail.com"
    },
    "dropAddress": {
        "drop_name": "Eshopbox Gurgaon (Sohna)",
        "drop_address": "MJ Logistics Private Limited, Seabird Marine Services Pvt Ltd,Village Babra Bakirpur, Pataudi Road Near Adani Logistic Park,  ICD Patli, Gurgaon, Haryana(122503)",
        "drop_pincode": "122503",
        "drop_city": "Gurgaon",
        "drop_country": "India",
        "drop_state": "Haryana"
    },
    "items": [
        {
           "lineItemSequenceNumber": 3022,
            "itemID": "5051039468601",
            "quantity": "1",
            "returnReason": "request for new",
            "orderItemID": "300975272-3736427",
            "productName": "Ellison Bay",
            "itemImage": "CA001CL95LVWCLRKS-90678.jpg",
            "returnFlag": "1",
            "lineItemTotal": 5499,
            "optional": {
                "image": null,
                "comments": null
            }
        }
    ]
}
curl --location --request POST 'http://wms.eshopbox.com/api/return' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--data-raw '{
    "customerReturnNumber": "RET123456",
    "assignCourier": false,
    "customerOrderId": "ORD987654",
    "externalChannelID": "SHOPIFY",
    "pickup_type": "reverse",
    "refundAmount": "1500",
    "isCOD": false,
    "return_request_date": "2025-03-19 10:30:00",
    "repaymentType": "wallet",
    "pickupAddress": {
        "customerName": "John Doe",
        "addressLine1": "123, Main Street",
        "addressLine2": "Near City Park",
        "city": "Mumbai",
        "state": "Maharashtra",
        "postalCode": "400001",
        "countryCode": "IN",
        "countryName": "India",
        "contactPhone": "9876543210",
        "email": "johndoe@example.com"
    },
    "items": [
        {
            "lineItemSequenceNumber": "1001",
            "itemID": "ABC12345",
            "sku": "PROD56789",
            "quantity": "1",
            "returnReason": "Defective product",
            "additionalInfo": {
                "image": "https://example.com/image1.jpg",
                "comments": "Product is not working"
            },
            "itemImage": "https://example.com/realImage.jpg"
        }
    ]
}'

Last updated

Was this helpful?