Get Refunds List in Shopify with Date Filter (Not Orders)
Solution:
Refunds in Shopify are just a property within orders.
The To filter refunds by date, you'll need to fetch the orders list then use the refund's
{
"created_at": "date the order was placed",
"processed_at": "date the order was imported",
"refunds": [
{
"created_at": "date the refund was created",
"processed_at": "date the refund was processed"
}
]
}
created_at
orprocessed_at
properties to filter them in the order you want : either when the refund request was issued or when it was processed.
Answer
Solution:
There is not current API which provides direct refund access like orders. You can fetch it through the order list or order ids.
Source
Didn't find the answer?
Our community is visited by hundreds of Shopify development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.