REST APIs
cURL
curl --request POST \ --url https://api.basic.tech/account/{project_id}/db/{table} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "value": {} }'
{ "data": {} }
Creates a new item in a database table
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
project id
table name
Item created successfully