post https://{youraccountname}.api-us1.com/api/3/fieldValues
Datetime field values will be converted to your account's timezone when saved
Example: If an account has a timezone setting of Central (America/Chicago):
- Sending a datetime w/ timezone of
2024-11-01T13:05:00-06:00
will be saved in the account's preference of Chicago's (Central) timezone:2024-11-01T14:05:00-05:00
Example POST
Body
POST
Body{
"fieldValue": {
"contact": 2,
"field": 3,
"value": "Blue"
},
"useDefaults": true
}
{
"fieldValue": {
"contact": 2,
"field": 4,
"value": "Option 1"
}
}
{
"fieldValue": {
"contact": 2,
"field": 7,
"value": "2018-12-31"
}
}
{
"fieldValue": {
"contact": 2,
"field": 7,
"value": "2020-05-19T02:45:00-05:00"
}
}
{
"fieldValue": {
"contact": 2,
"field": 6,
"value": "||Option 1||Option 3||Option 4||"
}
}
{
"fieldValue": {
"contact": 2,
"field": 6,
"value": "||Option 2||"
}
}