curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#DYNAMICS_BUSINESS_CENTRAL_CREATE_VENDOR' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "DYNAMICS_BUSINESS_CENTRAL_CREATE_VENDOR",
"parameters": {
"vendorNumber": "<string>",
"vendorName": "<string>",
"vendorEmail": "<string>",
"taxRegNumber": "<string>",
"paymentTermsId": "<string>",
"addressLine1": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"country": "<string>",
"vendorsAdditionalFields": {}
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#DYNAMICS_BUSINESS_CENTRAL_CREATE_VENDOR' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "DYNAMICS_BUSINESS_CENTRAL_CREATE_VENDOR",
"parameters": {
"vendorNumber": "<string>",
"vendorName": "<string>",
"vendorEmail": "<string>",
"taxRegNumber": "<string>",
"paymentTermsId": "<string>",
"addressLine1": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"country": "<string>",
"vendorsAdditionalFields": {}
}
}
'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
Vendor Number
Name
Email (example: "[email protected]")
Tax Registration Number : The vendor's tax registration number.
Payment Term ID
Address Line 1
Address Line 2
City
State (example: "Use state or province.")
ZIP (example: "Use ZIP or postal code, if applicable.")
Country
Additional Fields : Specify additional fields to include on this vendor as JSON. For example, you may specify a different billing address here. See the docs (https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/resources/dynamics_vendor) for available fields. (example: "{ "phoneNumber": "string", "website": "string", "currencyCode": "string", "irs1099Code": "string", "taxLiable": "boolean", "balance": "decimal", "lastModifiedDateTime": "datetime" }")
Success
Was this page helpful?