We've got a problem with IBM Domino REST API and document's fields starting with dollar sign ($).
IBM Domino has fields starting with $ and these fields are system's fields. When we send GET or POST request with these fields, they don't fill up as expected.
Other fields fill up just fine.
We think REST API is blocking these fields. Is it true or our misunderstanding?
How can we fill these fields without writing the code in Lotus?
For example, we send:
'Prefix' => '03-1/35',
'Author_resolution' => '[pcho_P_admin]',
'$OSN_Eventcode' => 'ctrl_rezolucia_00_00',
'\$OSN_Eventcode' => 'ctrl_rezolucia_00_00'
And after request the object has next fields:
'Prefix' => '03-1/35',
'Author_resolution' => '[pcho_P_admin]',
'$OSN_Eventcode' => '',
'\$OSN_Eventcode' => 'ctrl_rezolucia_00_00'
The field $OSN_Eventcode is unfillable.