curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SALESFORCE_CREATE_CUSTOM_FIELD_OPPORTUNITY' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "SALESFORCE_CREATE_CUSTOM_FIELD_OPPORTUNITY",
"parameters": {
"label": "<string>",
"type": "Checkbox",
"length": "<string>",
"decimalPlace": "<string>",
"pickListValues": "<string>",
"visibleLines": "<string>",
"defaultCheckboxValue": true,
"description": "<string>",
"helperText": "<string>",
"defaultFieldValue": "<string>"
}
}
'