APIs
- Return Actions
- Return Data
- Programmatic Webhooks
- Item Grading and Dispositioning
- Cart
- Destinations
- Blocklist
- Allowlist
- Fraud Reports
- Happy Returns Shipments
- Label Requests
Return Data
Advanced Shipping Notice
This endpoint will pull all packages by tracking statuses/timeframe. The ASN endpoint will return an array of objects. Those objects will contain order and return information.
Required API key scope
- Returns
GET
/
warehouse
/
reporting
/
asn
curl --request GET \
--url https://api.loopreturns.com/api/v1/warehouse/reporting/asn \
--header 'X-Authorization: <api-key>'
[
{
"id": 17,
"return_line_item_id": "36",
"order_id": "2685651685584",
"order_name": "#1138",
"order_number": "138",
"provider_order_number": "1138",
"state": "open",
"customer_email": "h.testman@loopreturns.com",
"title": "Mens Large Hydrostatic Inflatable PFD",
"purchase_price": "199.99",
"sku": "ad-alias-corporis-cum-ut-facilis-sed-non",
"barcode": "789765484987",
"carrier": "USPS",
"service": "Parcel Select",
"label_status": "out_for_delivery",
"tracking_number": "9999999999999999999999",
"integration_tracking_url": "N/A",
"restock_status": "restocked",
"currency": "USD",
"label_updated_at": "2023-08-21T14:09:17.000Z",
"label_url": "https://test-bucket.s3-us-west-2.amazonaws.com/files/postage_label/01234567/0df7eea6147b44b7ac204e9eb8293cfa.pdf",
"label_rate": "250",
"closed_at": "2023-09-01T14:00:41.000Z",
"updated_at": "2023-08-21T14:06:32.000Z",
"created_at": "2023-08-21T14:05:56.000Z",
"return_reason": "Size was too small",
"actioned_by": "N/A",
"return_method": "happy-returns",
"return_method_rma_code": "HR01234",
"return_method_state": "in_transit",
"date_delivered": "N/A",
"outcome": "exchange",
"scannable_id": "N/A",
"package_reference": "9999999999999999999999",
"shipping_box_barcode": "N/A",
"provider_created_at": "2021-01-01T10:00:00.000Z",
"destination_id": "17",
"destination_name": "Maine Warehouse",
"destination_address1": "55 Maine Street",
"destination_address2": "Unit 3",
"destination_city": "Portland",
"destination_state": "Maine",
"destination_zip": "54321",
"consolidation_tracking": "N/A"
}
]
Authorizations
Query Parameters
Examples:
"2023-08-21T00:00:00.000Z"
Examples:
"2023-08-21T00:00:00.000Z"
Response
200
application/json
Success
The response is of type object[]
.
curl --request GET \
--url https://api.loopreturns.com/api/v1/warehouse/reporting/asn \
--header 'X-Authorization: <api-key>'
[
{
"id": 17,
"return_line_item_id": "36",
"order_id": "2685651685584",
"order_name": "#1138",
"order_number": "138",
"provider_order_number": "1138",
"state": "open",
"customer_email": "h.testman@loopreturns.com",
"title": "Mens Large Hydrostatic Inflatable PFD",
"purchase_price": "199.99",
"sku": "ad-alias-corporis-cum-ut-facilis-sed-non",
"barcode": "789765484987",
"carrier": "USPS",
"service": "Parcel Select",
"label_status": "out_for_delivery",
"tracking_number": "9999999999999999999999",
"integration_tracking_url": "N/A",
"restock_status": "restocked",
"currency": "USD",
"label_updated_at": "2023-08-21T14:09:17.000Z",
"label_url": "https://test-bucket.s3-us-west-2.amazonaws.com/files/postage_label/01234567/0df7eea6147b44b7ac204e9eb8293cfa.pdf",
"label_rate": "250",
"closed_at": "2023-09-01T14:00:41.000Z",
"updated_at": "2023-08-21T14:06:32.000Z",
"created_at": "2023-08-21T14:05:56.000Z",
"return_reason": "Size was too small",
"actioned_by": "N/A",
"return_method": "happy-returns",
"return_method_rma_code": "HR01234",
"return_method_state": "in_transit",
"date_delivered": "N/A",
"outcome": "exchange",
"scannable_id": "N/A",
"package_reference": "9999999999999999999999",
"shipping_box_barcode": "N/A",
"provider_created_at": "2021-01-01T10:00:00.000Z",
"destination_id": "17",
"destination_name": "Maine Warehouse",
"destination_address1": "55 Maine Street",
"destination_address2": "Unit 3",
"destination_city": "Portland",
"destination_state": "Maine",
"destination_zip": "54321",
"consolidation_tracking": "N/A"
}
]
Assistant
Responses are generated using AI and may contain mistakes.