Welcome to the Returnly API! With our API, you can extend, integrate and build custom returns flow and exchanges for your customers. Here are a few examples of what you can do with our API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
returnly: {
type: "app",
app: "returnly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.returnly.com/returns`,
headers: {
"X-Api-Token": `${this.returnly.$auth.api_key}`,
},
params: {
include: `return_line_items,shipping_labels,instant_refund_voucher`,
status: `refunded`,
},
})
},
})
Returnly uses API keys for authentication. When you connect your Returnly account, Pipedream securely stores the keys so you can easily authenticate to Returnly APIs in both code and no-code steps.
See docs for more information.