Numeric custom fields cannot be updated with API
We are updating all of our member custom fields using a php webhook function. We have wanted to try using the new numeric type field for tracking a custom amt number for each member. We can set it up and use it in the WildApricot admin panels, but when we try to update it using our api webhook it does not work. We get a 200 return code, but the field does not get updated. Is this a known bug? Is there a scheduled release to fix this? Is there a workaround?
The function payload data looks something like this:
$data = array(
'Id' => '70441312',
'FieldValues' => array(
array(
'FieldName' => 'Custom Tracking Amt',
'SystemCode' => 'custom-15796822',
'Value' => 19
)
)
);
-
Michel commented
RESOLVED - this does work after we updated our webhook functions to refererence the v2.3 API as in:
https://api.wildapricot.org/v2.3/...we were previously only using v2