Custom Field Details Input
Input representation of the custom fields for the request to incorporate custom
attributes into records.
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 |