Hi All,
I am using shopify recurring charges api to get information about billing and amount and there is discrepancy in the next billing date. On the shopify front, in the App history section, the billing is monthly but the response which I am getting from api is showing billing date of next year
API : https://{shopifyDomain}/admin/api/2022-04/recurring_application_charges.json
Response is
{
"recurring_application_charges": [
{
"status": "active",
**"billing_on": "2023-11-06",**
"created_at": "2022-11-27T17:17:32-08:00",
"updated_at": "2022-11-27T17:17:44-08:00",
"test": false,
"activated_on": "2022-11-28",
"cancelled_on": null,
"trial_days": 0,
"trial_ends_on": "2022-11-28",
},
]
}
Need your help to understand if I am doing something wrong or there is issue from api end
Looking forward for the solution
Thanks
