List MY return requests for this order
GET
/store/v1/customers/me/orders/{orderId}/returns
const url = 'https://your-store.example.com/store/v1/customers/me/orders/example/returns';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://your-store.example.com/store/v1/customers/me/orders/example/returnsParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” orderId
required
string