Delete a row

Log in to see full request history

You can delete a row with this endpoint. As described in /lists/{listId}/rows you have to activate push to server.

To select the row for the deletion, you have to use idValues. The keys in this object is the field id and the value is the value of this filed. In the example below, we search for the row with "Doe" as value in the fourth field. You can use multiple fields in idValues.

If there are multiple matches the query parameter multiMatchBehavior will set the behavior. TakeFirstMatch will delete the first occurrence and RaiseError will raise an error without deleting anything. To avoid multiple matches you should have at least one field with unique values.

{ "idValues": { "4": "Doe" } }
Path Params
string
required

Id of the app

string
required

Id of the list in the app

Query Params
string
required

Behavior in multiple matches. Possible values are TakeFirstMatch and RaiseError.

Body Params
idValues
object
required

Rows which have the fields with these ids and the corresponding values will be changed.

Responses

Language
Credentials
Click Try It! to start a request and see the response here! Or choose an example:
application/json