We are currently in the process of implementing subscriptions using the Shopify subscriptions api through Paywhirl. We are having an issue with note_attributes field being applied to new orders from the subscription.
On our checkout, we have a custom list input to gather a delivery date and it is being saved to our order into the note_attributes field like so.
"note_attributes": [
{
"name": "delivery-date",
"value": "2021-02-16T06:01:08.031Z"
}
],
When a new order is processed from the subscription renewal, it does not seem to also transfer the note_attributes from the initial order. Is this intended behavior that it does?
The new order has
{
"note_attributes" : []
}
It is causing issues for us because we need to know the users delivery date and they are unable to pick it again since it is an automatic subscription.
I've reached out to Paywhirl Developers and they said that this sounds like a bug in the shopify API's, so just want to see if there is anything that can be done.
Thank you.