Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Custom Field Details Input
You can include the standard fields such as Description, EffectiveStartDate, and more in this request body. To include the standard fields in the request body, specify the API name of the standard field as the value of the fieldName property, and provide the value for the standard field in the fieldValue property.
JSON example
This example shows a sample request that includes a standard field.
1{
2 "fieldName": "effectiveStartDate",
3 "fieldValue": "2024-05-06"
4}This example shows a sample request that includes a custom field.
1{
2 "fieldName": "TShirtSize__c",
3 "fieldValue": "Medium"
4}Properties
| Name | Type | Description | Required or Optional | Available Version |
|---|---|---|---|---|
| fieldName | String | API name of the custom or standard field. | Optional | 60.0 |
| fieldValue | Object | Value of the custom or standard field. | Optional | 60.0 |