i created an api page now i want to send data for multiple entries and below is the payload i want to send
[
{
"entryNo": 57,
"proposalId": "6970d039d8159600252c2c8e",
"sdMonths": 7,
"sdDueDate": "2026-01-29",
"totalSDAmount": 700
},
{
"entryNo": 58,
"proposalId": "6970d18ad8159600252c2ecd",
"sdMonths": 8,
"sdDueDate": "2026-01-28",
"totalSDAmount": 800
},
{
"entryNo": 59,
"proposalId": "6971f9fec4ed5900329326eb",
"sdMonths": 9,
"sdDueDate": "2026-01-29",
"totalSDAmount": 900
}
]
here is the POST method URL - https://api.businesscentral.dynamics.com/v2.0/xxxxxxxxxxxxxxxx/Reports/api/ABC/SWPortal/v2.0/companies(xxxxxxxxxxxxxxx)/sdSchedules
but by using this url i am able to post only one entry at a time .
This URL is posting one entry only. I want to post all the entries at a time. would anyone suggest where the problem is
#BusinessCentral #API, #Integration