CRM
Fast bulk create opportunities
Creates up to 100 opportunities with nested account and contact payloads. This optimized endpoint batch-resolves accounts, contacts, owners, and stages before inserting opportunities.
post/v1/opportunities/fast-bulk
Request body
Example request
[
{
"related_objects": {
"account": {
"domain": "acme.com",
"name": "Acme"
},
"primary_contact": {
"email": "jane@acme.com"
},
"additional_contacts": [
{
"email": "jane@acme.com"
}
]
}
}
]Response
Opportunities were created or skipped as duplicates.
Example response
{
"success": true
}