curl --request PATCH \
--url https://app.journeybee.io/api/v1/partnerships/{partnershipId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"tierId": 123,
"categoryId": 123,
"stageUuid": "<string>",
"assignedUsers": [
{}
],
"tags": [
{}
],
"customFields": [
{
"customFieldId": 123,
"type": "<string>",
"value": {
"text": "<string>",
"number": 123,
"date": "<string>",
"boolean": true,
"select": 123,
"multi_select": [
{}
]
}
}
],
"fallbackData": {
"name": "<string>",
"logo_square_uuid": "<string>",
"website_url": "<string>",
"country_label": "<string>"
}
}
'