delete_refund
DELETE/refund
The merchant sends a request to this endpoint to delete (decline) the active refund request on an order. This can only be done when the order has been confirmed ('order_confirmed') and there is an active (non-locked) refund request.
Request
- application/json
Body
required
Responses
- 200
Refund details after deletion.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
data object
Order data returned by post-order management endpoints.
Not returned by cancel_order.
shipping object
Name, address, phone, and email for a shipping or billing contact.
name objectrequired
First and last name of a person.
address objectrequired
Postal address.
Second address line (optional).
billing object
Name, address, phone, and email for a shipping or billing contact.
name objectrequired
First and last name of a person.
address objectrequired
Postal address.
Second address line (optional).
items object[]
URL of the item's image (optional).
URL of the item's page (optional).
refunds object[]
Present on find_order, refund POST, and refund DELETE responses.
status object
{
"data": {
"backd_order_id": "BO-20260416-0001",
"create_date": "2026-04-16 10:30:00",
"order_total": 9150,
"cart_amount": 9000,
"tax_amount": 100,
"shipping_amount": 50,
"discount_amount": 0,
"status": "order_placed",
"merchant_order_id": "JKLMO4321",
"merchant_order_status": "processing",
"shipping": {
"name": {
"first": "Joe",
"last": "Doe"
},
"company_name": "Big Business",
"address": {
"line1": "123 Main St",
"line2": "Floor 1",
"city": "Austin",
"state": "TX",
"zipcode": "78704",
"country": "USA"
},
"phone_number": "4153334567",
"email": "joedoe@123fakestreet.com"
},
"billing": {
"name": {
"first": "Joe",
"last": "Doe"
},
"company_name": "Big Business",
"address": {
"line1": "123 Main St",
"line2": "Floor 1",
"city": "Austin",
"state": "TX",
"zipcode": "78704",
"country": "USA"
},
"phone_number": "4153334567",
"email": "joedoe@123fakestreet.com"
},
"items": [
{
"display_name": "MacBook Pro",
"sku": "ABC-123",
"unit_price": 3000,
"qty": 3,
"item_image_url": "http://merchant.website.com/images/macbook-pro.jpg",
"item_url": "http://merchant.website.com/products/macbook-pro.html"
}
],
"refunds": [
{
"amount": 50,
"create_date": "2026-04-15 12:49:46",
"status": "draft",
"locked_at": "2026-04-15 22:00:00"
}
]
},
"message": "API Backd - Success",
"status": {
"type": "success",
"code": 200
},
"error": false
}