removemicroapprow
Last updated
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.
{
"rowID":"<insert microapp row id here>"
}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.
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:
Row Metadata and Relationships - Canonical row semantics used by the read and write endpoints
Common API Examples - See this operation in all three API formats
updatemicroapprow - Update before deleting when you need to inspect or reassign metadata first
Last updated
{
"status": "success"
}