Creates a new record. Note that you create a database and a table in Widget Dashboard in advance.

Put the name of the field and the value to be sent in the values array. The value must match the type specified for the field. fixedValue is not supported in this API. Always request an empty array.

ex. ) sample table

idnameproduct_typeprice
1applefruits100
2grapefruits200
3chocolatesnacks400
// request
{
        "fixedValue": [],
        "values": [
            {
                "key": "name",
                "value": "banana",
            },
            {
                "key": "product_type",
                "value": "fruits",
            },
            {
                "key": "price",
                "value": "500",
            }                        
        ]
}
Language
URL
Click Try It! to start a request and see the response here!