Insert Data

This end point inserts data in a table. Input can be a single record or multiple records provided in JSON format. Users that belong to the admin or operator group can only perform this operation. Users also need to have DataCreatePermission to insert data.

HTTP Operation: PUT

Path: /resources/dds/{schemaName}/data/{table}

Sample input for inserting data in the BDI_RECEIVER_OPTIONS table

/dds/bdi_rms_schema/data/BDI_RECEIVER_OPTIONS

{
	"items":
 [
		{
			"ID":1,
			"BASE_FOLDER":"base",
			"FOLDER_TEMPLATE":"baseTemplate",
			"INTERFACE_MODULE":"interfaceModule",
			"INTERFACE_SHORT_NAME":"interfaceShortName",
			"MERGE_STRATEGY":"mergeStrategy"
		}
	]
}