v1
latestOpenAPI 3.0.02026-07-2638801.8 MBrecord
Create records
Create one or multiple records with support for field value typecast and custom record ordering.
post/table/{tableId}/record
Path parameters
tableIdstring required
Request body
Example request
{
"records": [
{
"fields": {
"single line text": "text value"
}
}
]
}Response
Returns data about the records.
Example response
{
"records": [
{
"id": "recXXXXXXX",
"fields": {
"single line text": "text value"
}
}
]
}