API - Change value of form field
I have a specific need using the end point I need modify the type and value of a specific field in the form:
/api/REST/1.0/assets/form/id
{
"id":"",
"name":"api test",
"elements":[
{
"type":"FormField",
"id":"26197",
"name": "Sales Org",
"displayType": "text",
"defaultValue": "TSL",
"validations":[
]
}
],
"emailAddressFormFieldId":"26192",
"processingSteps":[
],
"processingType":"externalWebsite"
}
Ok I've managed to change the field type and the value but when I request this all the others fields dissapear leaving only the current one, what I'm making wrong?
0