Skip to main content
GET
/
happy-returns
/
shipments
/
{happy_returns_shipment_id}
Get Shipment Information
curl --request GET \
  --url https://api.loopreturns.com/api/v1/happy-returns/shipments/{happy_returns_shipment_id} \
  --header 'X-Authorization: <api-key>'
{
  "loop_shipment_id": 123,
  "happy_returns_shipment_id": "<string>",
  "line_item_count": 123,
  "return_count": 123,
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

X-Authorization
string
header
required

Path Parameters

happy_returns_shipment_id
string
required

The unique identifier associated with the shipment.

Response

Success

loop_shipment_id
integer

The unique identifier associated with the shipment, assigned by Loop.

happy_returns_shipment_id
string

The unique identifier associated with the shipment, assigned by Happy Returns.

line_item_count
integer

The number of line items included in the shipment.

return_count
integer

The number of Loop returns represented in the shipment.

created_at
string

The date and time at which the shipment was created, using the ISO 8601 date format.

updated_at
string

The date and time at which the shipment was last updated, using the ISO 8601 date format.