updatemicroapprow

description

Modify an existing row in a Microapp. The JSON body consists of rowID and rowData. The field names need to match (case sensitive) to the Buzzy field labels.

parameters

The X-Auth-Token and X-User-Id are derived from the values authToken and userId returned from the login endpoint and are used in the HTTP header.

rowID - required, the the row to be updated's ID.

rowData - required, JSON object that has properties matching to the fields to be updated.

userID - optional parameter to change the row's "creator"

Resource

{
	"rowID":"<insert microapp row id here>",
	"rowData":{
		"ExampleFieldName":"ExampleValue"
	}
}

response

Returns the status of the request

Basic Update Example

Linked Table Field Update Example

When updating linked table (cross app) fields, provide the complete linked field structure:

Important Notes:

  • To update a linked table field, provide the new crossAppRowID and corresponding value

  • To clear a linked table field, set the field to null or omit it from rowData

  • The value.label should match a field name in the linked table

  • The value.value should be the display value from that field

You should get back:

See Also


Last updated