Create Record Entry in a table
https://core.hisend.hunnovate.com/api/v1/projects/{project_identifier}/tables/{table_identifier}/records?api_key={api_key}
Save record in a table, note the body parameters is a free form json object you can use any key value pair, see here for more
Path Parameters
project_identifier string required
The identifier or id of the project, for example project_name or 01jtk9f6xtp5bqycmj8x68040f, you can get it from the projects page on your dashboard
table_identifier string required
The identifier or id of the table, for example users or 01jtk9f6zf2p1n4d65bxyh6ysk, you can get it from the tables page on your dashboard
Query Params
api_key string required
The api key from your dashboard
422 Error Response Example
{
"message": "Error creating record",
}
Payload Example
{
"first_name": "John",
"last_name": "Doe",
"phone": 1234567890,
"email": "example@hunnovate.com",
}
200 Success Response Example
{
"message": "Record created successfully",
"data": {
"id": "01jtk9f6zf2p1n4d65bxyh6ysk",
"first_name": "John",
"last_name": "Doe",
"phone": 1234567890,
"email": "example@hunnovate.com",
"project_id": "01jtk9f6xtp5bqycmj8x68040f",
},
}