Is there any way to dynamically populate user-defined field value in SalesInvoice. I'm using REST API, and I need JSON example to add value to field.
I'm using this to update the field.
{
"Attributes": [
{
"AttributeID": {
"value": "testattributeid"
},
"Required": {
"value": false
},
"Value": {
"value": "testvalue"
}
}
]
}