removemicroapprow

description

Remove an existing row in a Microapp. The JSON body consists of rowID parameter.

Use this endpoint to delete one row when you already know the rowID.

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.

Resource

{
	"rowID":"<insert microapp row id here>"
	
}

response

Returns the status of the request

Deletion requires an authenticated user and the row must be deletable under the Datatable's delete permissions. If the caller cannot delete the row, the request fails.

example

POST /api/removemicroapprow 
X-Auth-Token:<insert token here>
X-User-Id:<insert user id here>

{
	"rowID": "<insert row ID here>",
	
}

You should get back:

See Also


Last updated