v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
lookupManagement

Insert or Update a lookup table row.

Insert or update a row of a lookup table with the given identifier. A new row is inserted if the primary key does not exist already, otherwise the existing row with the specified primary key is updated. All the fields of the lookup table are required and will be updated to the given values. In case a field is not specified then it will be assumed to be set to null. If the table size exceeds the maximum limit of 100MB then based on the size limit action of the table the update will be processed or discarded.

put/v1/lookupTables/{id}/row

Path parameters

idstring required
Example:0000000001C41EE4

Identifier of the lookup table.

Request body

Example request

{
  "row": [
    {
      "columnName": "user_id",
      "columnValue": "user1"
    }
  ]
}

Response

Row updated successfully.