curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SALESFORCE_CREATE_CUSTOM_FIELD_LEAD' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "SALESFORCE_CREATE_CUSTOM_FIELD_LEAD",
"parameters": {
"label": "<string>",
"type": "Checkbox",
"length": "<string>",
"decimalPlace": "<string>",
"pickListValues": "<string>",
"visibleLines": "<string>",
"defaultCheckboxValue": true,
"description": "<string>",
"helperText": "<string>",
"defaultFieldValue": "<string>"
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SALESFORCE_CREATE_CUSTOM_FIELD_LEAD' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "SALESFORCE_CREATE_CUSTOM_FIELD_LEAD",
"parameters": {
"label": "<string>",
"type": "Checkbox",
"length": "<string>",
"decimalPlace": "<string>",
"pickListValues": "<string>",
"visibleLines": "<string>",
"defaultCheckboxValue": true,
"description": "<string>",
"helperText": "<string>",
"defaultFieldValue": "<string>"
}
}
'Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Field Label : Enter a label to be used on displays, page layouts, reports, and list views. Also determines the Field Name used for internal reference. For example, if the Field Label is “Email”, the Field Name will be “Email__c”.
Field Type
Checkbox, Currency, Date, Email, Number, Percent, Phone, Picklist, MultiselectPicklist, Text, TextArea, LongTextArea, Html, Time, Url Length : Number of digits to the left of the decimal point This field appears only when 'type' = 'Currency') This field appears only when 'type' = 'Currency', 'Number') This field appears only when 'type' = 'Currency', 'Percent') This field appears only when 'type' = 'Currency', 'Text') This field appears only when 'type' = 'Currency', 'LongTextArea') This field appears only when 'type' = 'Currency', 'Html')
Decimal Places : Number of digits to the right of the decimal point This field appears only when 'type' = 'Currency') This field appears only when 'type' = 'Currency', 'Number') This field appears only when 'type' = 'Currency', 'Percent')
Values : Enter values, with each value separated by a new line This field appears only when 'type' = 'Picklist') This field appears only when 'type' = 'Picklist', 'MultiselectPicklist')
Visible Lines This field appears only when 'type' = 'MultiselectPicklist') This field appears only when 'type' = 'MultiselectPicklist', 'LongTextArea') This field appears only when 'type' = 'MultiselectPicklist', 'Html')
Default Value This field appears only when 'type' = 'Checkbox')
Description
Helper Text : This text displays on detail and edit pages when users hover over the Info icon next to this field.
Default Value
Success
Was this page helpful?