Happy Returns Shipments
Get Shipment Items
APIs
- Return Actions
- Return Data
- Programmatic Webhooks
- Item Grading and Dispositioning
- Cart
- Destinations
- Blocklist
- Allowlist
- Fraud Reports
- Happy Returns Shipments
- Label Requests
Happy Returns Shipments
Get Shipment Items
Get all items for a Happy Returns shipment.
Required API key scope
- Happy Returns Shipments (Read)
GET
/
happy-returns
/
shipments
/
{id}
/
items
curl --request GET \
--url https://api.loopreturns.com/api/v1/happy-returns/shipments/{id}/items \
--header 'X-Authorization: <api-key>'
{
"current_page": 1,
"data": [
{
"carrier": "ups",
"happy_returns_return_bag_barcodes": [
"HRABCDEF-1234-1"
],
"happy_returns_rma_id": "HRABCDEF",
"happy_returns_shipment_id": "45678",
"item_title": "T-Shirt",
"order_name": "#1234",
"po_number": "PO-123456",
"return_id": 123,
"shipment_id": 12345,
"shipping_box_barcode": "SB-12345678",
"sku": "SKU-123456",
"tracking_number": "1Z1234567890",
"variant_title": "Blue"
}
],
"first_page_url": "https://api.loopreturns.com/api/v1/happy-returns/shipments/123/items?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://api.loopreturns.com/api/v1/happy-returns/shipments/123/items?page=1",
"next_page_url": "<string>",
"path": "https://api.loopreturns.com/api/v1/happy-returns/shipments/123/items",
"per_page": 200,
"prev_page_url": "<string>",
"to": 1,
"total": 1
}
Authorizations
Path Parameters
The unique identifier associated with the shipment, assigned by Loop.
Response
200
application/json
Success
The response is of type object
.
curl --request GET \
--url https://api.loopreturns.com/api/v1/happy-returns/shipments/{id}/items \
--header 'X-Authorization: <api-key>'
{
"current_page": 1,
"data": [
{
"carrier": "ups",
"happy_returns_return_bag_barcodes": [
"HRABCDEF-1234-1"
],
"happy_returns_rma_id": "HRABCDEF",
"happy_returns_shipment_id": "45678",
"item_title": "T-Shirt",
"order_name": "#1234",
"po_number": "PO-123456",
"return_id": 123,
"shipment_id": 12345,
"shipping_box_barcode": "SB-12345678",
"sku": "SKU-123456",
"tracking_number": "1Z1234567890",
"variant_title": "Blue"
}
],
"first_page_url": "https://api.loopreturns.com/api/v1/happy-returns/shipments/123/items?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://api.loopreturns.com/api/v1/happy-returns/shipments/123/items?page=1",
"next_page_url": "<string>",
"path": "https://api.loopreturns.com/api/v1/happy-returns/shipments/123/items",
"per_page": 200,
"prev_page_url": "<string>",
"to": 1,
"total": 1
}