curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#DYNAMICS_365_FINANCE_CREATE_BILL' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "DYNAMICS_365_FINANCE_CREATE_BILL",
"parameters": {
"dataAreaId": "<string>",
"InvoiceAccount": "<string>",
"InvoiceNumber": "<string>",
"InvoiceDescription": "<string>",
"InvoiceDate": "<string>",
"Date": "<string>",
"DueDate": "<string>",
"IsOnHold": "Yes",
"billAdditionalFields": {}
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#DYNAMICS_365_FINANCE_CREATE_BILL' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "DYNAMICS_365_FINANCE_CREATE_BILL",
"parameters": {
"dataAreaId": "<string>",
"InvoiceAccount": "<string>",
"InvoiceNumber": "<string>",
"InvoiceDescription": "<string>",
"InvoiceDate": "<string>",
"Date": "<string>",
"DueDate": "<string>",
"IsOnHold": "Yes",
"billAdditionalFields": {}
}
}
'Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Company : Specify the company code of the company incurring the bill. (example: "dat")
Invoice Account : Specify the vendor account sending the bill.
Invoice Number : Specify an internal invoice identification number. (example: "001")
Invoice Description
Invoice Date (example: "2022-01-01")
Posting Date (example: "2022-01-01")
Due Date (example: "2022-01-01")
Invoice On Hold Status
Yes, No Additional Fields : Specify additional fields to include on this bill as JSON. For example, you may specify a cash discount date here. See the metadata for available fields. (example: "[ { "CashDiscountDate": "2022-10-01", "PrimaryContactTwitter": "iamjohn@twitter" }, ]")
Success
Was this page helpful?