Hi-Send Docs

Update Record Entry in a table

https://core.hisend.hunnovate.com/api/v1/records/{record_identifier}?api_key={api_key}

Update 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, for production environment, users will be able to update only their own records


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 updating record",
}

Payload Example


{
    "first_name": "John",
    "last_name": "Doe",
    "phone": 1234567890,
    "email": "example@hunnovate.com",
}

200 Success Response Example


{
    "message": "Record updated successfully",
    "data": {
        "id": "01jtk9f6zf2p1n4d65bxyh6ysk",
        "first_name": "John",
        "last_name": "Doe",
        "phone": 1234567890,
        "email": "example@hunnovate.com",
        "project_id": "01jtk9f6xtp5bqycmj8x68040f",
    },
}