Returns the merchant's return rules: the configured send-back address, the default follow-up action per return condition (A/B/C), and any SKU-specific overrides.
Use this endpoint to look up the send-back address before creating a send-back order.
Security
BearerAuth
- Mock serverhttps://hive-merchant-api.redocly.app/_mock/merchant-api-v2/mapi_v2_oas31/return_rules
- Production APIhttps://app.hive.app/merchant_api/v2/return_rules
- Staging APIhttps://staging.app.hive.app/merchant_api/v2/return_rules
curl -i -X GET \
https://hive-merchant-api.redocly.app/_mock/merchant-api-v2/mapi_v2_oas31/return_rules \
-H 'Authorization: Bearer <YOUR_token_HERE>'The merchant's return rules
Address that items are sent back to when the follow-up action is send_back. null when no send-back address is configured.
Response
{ "send_back_address": { "first_name": "string", "last_name": "string", "company": "string", "line1": "string", "line2": "string", "city": "string", "postal_code": "string", "province_or_state_code": "string", "country_code": "string" }, "default_rules": { "A": "dispose", "B": "dispose", "C": "dispose" }, "sku_rules": [ { … } ] }