Update records
You can update records in a resource from your application or an application that you have access to. The data that is updated will be updated based on the fields and records that you have access to.
Request URL
PATCH
https://api.robostack.ai/external/api/{{appUUID}}/{{resourceName}}/
Request Body Samples
Update Single Record
{
"selection": {
"fieldName": "Matching Field Value"
},
"updation": {
"fieldName": "New Field Value"
}
}
Update Multiple Records
{
"selection": [
{
"fieldName": "Matching Field Value"
},
{
"fieldName": ""
}
],
"updation": [
{
"fieldName": "New Field Value"
},
{
"fieldName": "Unknown Field Value"
}
]
}