curl --request POST \
--url https://app.journeybee.io/api/v1/partnerships \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"emails": [
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"tags": [
{}
]
}
],
"partnerType": "<string>",
"tierId": 123,
"categoryId": 123,
"stageUuid": "<string>",
"inactive": true,
"countryId": 123,
"emailDomain": "<string>",
"reseller": "<string>",
"assignedUsers": [
{}
],
"tags": [
{}
],
"customFields": [
{
"customFieldId": 123,
"type": "<string>",
"value": {
"text": "<string>",
"number": 123,
"date": "<string>",
"boolean": true,
"select": 123,
"multi_select": [
{}
]
}
}
]
}'