MONEI / Shopify-api-node

Node Shopify connector sponsored by MONEI
https://monei.com/shopify-payment-gateway/
MIT License
940 stars 278 forks source link

How to get HTTP response code? #592

Closed ikudosi closed 1 year ago

ikudosi commented 1 year ago

Can someone tell / point me on how to get the HTTP response code when an exception is thrown? Or perhaps update the readme on how to do this?

lpinca commented 1 year ago
if (error.response) {
  console.log(error.response.statusCode);
}
ikudosi commented 1 year ago

Ty!