Custom field cannot be called when reference starts with numeric

Question probably naive. I can not call custom fields when the reference starts with numeric.

Example : I can use this kind of field data.c8f1d35bd11594330b2ec4b70038bf2d8xxxx but not this one data.93c8f1d35bd11594330b2ec4b70038bf2d88xxx

Any idea ?

1 Like

@lamoedo, it seems that your trying to access properties in javascript. For this particular use-case (numeric object properties) you can try using the bracket-notation:

i.e.: data[93c8…] or data[“93c8…”]

1 Like

Thanks, it works with the last version : data[“93c8…”]

Ludovic

In PHP, you can referer a custom field, like this:

$person->{‘16ad01a8dbfa8913753ac55c799476741da35b1f’};

1 Like