MONEI / Shopify-api-node

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

unable to fetch metafield by its id #526

Closed kambojidileep98 closed 2 years ago

kambojidileep98 commented 2 years ago

shopify.metafield.get(eula_195, { id: eula_195, //metafield key metafield: { owner_resource: 'page', owner_id: 8708459742912 } I am trying to fetch that particular metafield from the node js server but I am getting the response as

ERROR: error: { success: false, message: 'Order could not be verified', status: 403 } }

lpinca commented 2 years ago

Use only the ID. For example

const metafield = await shopify.metafield.get(721389482);
kambojidileep98 commented 2 years ago

thanks it worked