v3

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-273246117.6 KB
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

pipeline_idstring uuid nullable
pipeline_namestring nullable

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.

successboolean
messagestring
{"stackTrail":"components:schemas:ApiResponse:properties:data","oasType":"schema","type":"unknown","description":"Endpoint-specific response payload."}

Example response

{
  "success": true
}