post https://api-examples.tamr.cloud/api/v1alpha1/tables//records
Creates a new record, and, if given, links to it.
Note: To use the Try It feature on the right to see an example response, you can enter any values for the required parameters.
When creating a new record, you supply values for the fields in the data product's schema. To obtain the schema for a given data product, use the list
operation to return a list of records in the data product table: POST /v1alpha1/tables/{tableId}/records:list
The schema is returned in the response data
block. For example:
"data": {
"name": "Acme, Inc.",
"address": "123 Main St.",
"city": "Anytown",
"zip": "12345",
"phone": "555-1234",
"website": "http://acme.example.com",
"country": "USA"
},
Optionally, you can specify up to 5 IDs (externalIds
) to link to the new record. These IDs can be Tamr IDs, Tamr record IDs, or other persistent identifiers.
If the record is created successfully, this operation returns the created record.