curl --request POST \
--url https://app.journeybee.io/api/v1/lead-deals \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"lead_id": 123,
"deal_value": 123,
"label": "<string>",
"deal_label": "<string>",
"stage_uuid": "<string>",
"partnership_id": 123,
"tags": [
{}
],
"customFields": [
{
"customFieldId": 123,
"type": "<string>",
"value": {
"text": "<string>",
"number": 123,
"date": "<string>",
"boolean": true,
"select": 123,
"multi_select": [
{}
]
}
}
],
"partnerCustomFields": [
{
"customFieldId": 123,
"type": "<string>",
"value": {}
}
],
"integrationName": "<string>",
"integrationCustomFields": [
{
"uuid": "<string>",
"value": "<any>"
}
],
"powerups": {
"pipedrive": {
"deal_id": 123,
"person_id": 123,
"organization_id": 123
}
}
}'