Reference

List records

GET
/records

Authorization

Authorization<token>

Bearer

In: header

Query Parameters

table_idRequiredstring
curl -X GET "https://api.onnie.ai/v1/records?table_id=%3Cstring%3E" \
  -H "Authorization: <token>"

OK

Create a record

POST
/records

Authorization

Authorization<token>

Bearer

In: header

curl -X POST "https://api.onnie.ai/v1/records" \
  -H "Authorization: <token>"

Created

Get a record

GET
/records/{id}

Authorization

Authorization<token>

Bearer

In: header

Path Parameters

idRequiredstring
curl -X GET "https://api.onnie.ai/v1/records/<string>" \
  -H "Authorization: <token>"

OK

Update a record

PATCH
/records/{id}

Authorization

Authorization<token>

Bearer

In: header

Path Parameters

idRequiredstring
curl -X PATCH "https://api.onnie.ai/v1/records/<string>" \
  -H "Authorization: <token>"

OK

Delete a record

DELETE
/records/{id}

Authorization

Authorization<token>

Bearer

In: header

Path Parameters

idRequiredstring
curl -X DELETE "https://api.onnie.ai/v1/records/<string>" \
  -H "Authorization: <token>"

No content