curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#DYNAMICS_365_FINANCE_CREATE_CUSTOMER' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "DYNAMICS_365_FINANCE_CREATE_CUSTOMER",
"parameters": {
"CustomerAccount": "<string>",
"Name": "<string>",
"CustomerGroupId": "<string>",
"OrganizationNumber": "<string>",
"PartyType": "Organization",
"SalesCurrencyCode": "<string>",
"PartyCountry": "<string>",
"AddressStreet": "<string>",
"AddressCity": "<string>",
"AddressZipCode": "<string>",
"PrimaryContactPhone": "<string>",
"PrimaryContactEmail": "<string>",
"customerAdditionalFields": {}
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#DYNAMICS_365_FINANCE_CREATE_CUSTOMER' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "DYNAMICS_365_FINANCE_CREATE_CUSTOMER",
"parameters": {
"CustomerAccount": "<string>",
"Name": "<string>",
"CustomerGroupId": "<string>",
"OrganizationNumber": "<string>",
"PartyType": "Organization",
"SalesCurrencyCode": "<string>",
"PartyCountry": "<string>",
"AddressStreet": "<string>",
"AddressCity": "<string>",
"AddressZipCode": "<string>",
"PrimaryContactPhone": "<string>",
"PrimaryContactEmail": "<string>",
"customerAdditionalFields": {}
}
}
'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
Customer Account : Specify a unique identifier for the Customer Account.
Name
Customer Group : Specify the Customer Group for the new customer.
Organization Number
Type : Specify the type of customer.
Organization, Person Currency : The three-letter currency code associated with this customer.
Country
Street Address
City
Zip Code
Phone Number
Email Address
Additional Fields : Specify additional fields to include on this customer as JSON. For example, you may specify a different billing address here. See the metadata for available fields. (example: "[ { "InvoiceAddressCity": "N.Y", "PrimaryContactTwitter": "iamjohn@twitter" }, ]")
Success
Was this page helpful?