curl --request POST \
--url https://enrich.octolane.com/v1/inbound/opportunities \
--header 'Content-Type: <content-type>' \
--header 'X-API-Key: <x-api-key>' \
--data '
{
"pipeline_id": "<string>",
"opportunity": {
"name": "<string>",
"stage_id": "<string>",
"deal_size": 123,
"close_date": 123,
"next_action_date": 123,
"next_step": "<string>"
},
"related_objects": {
"account_domain": "<string>",
"primary_contact_email": "<string>",
"additional_contact_emails": [
"<string>"
],
"owner_email": "<string>"
}
}
'