I am trying to test the order_add_attachment mutation but I keep seeing the following error returned: “Please specify a valid url.”
I have tried both a png and pdf url, could you please provide some guidance as to what an acceptable url looks like?
My mutation looks as follows:
mutation {
order_add_attachment(
data: {
order_id: "<order_id>"
url: "https://bitcoin.org/bitcoin.pdf"
}
) {
request_id
attachment {
id
}
}
}