Im using the API v3 to add or update a client, Im adding a custom_field and I get no error, just no custom field is entered. this is my update json {
"email_address": "John@smith.com",
"first_name": "John",
"last_name": "Smith",
"update_source": "Account",
"list_memberships": [
"81c141fa-4732-11ec-b72a-fa163ec17584",
"509470fa-5f71-11ec-bdd8-fa163e78853a"
],
"custom_fields": [
{
"custom_field_id": "72e8a1ca-48ac-11ec-a37a-fa163eae0edb",
"Value": "11518"
}
]
}
this is my create json {
"email_address": {
"address": "John@smith.com",
"permission_to_send": "implicit"
},
"first_name": "John",
"last_name": "Smith",
"create_source": "Account",
"list_memberships": [
"81c141fa-4732-11ec-b72a-fa163ec17584",
"509470fa-5f71-11ec-bdd8-fa163e78853a"
],
"custom_fields": [
{
"custom_field_id": "72e8a1ca-48ac-11ec-a37a-fa163eae0edb",
"Value": "11518"
}
]
} is something broken with the API?
... View more