Comment on page
Entry API
HTTP methods to read, write and query entry records
The Entry API allows users to write and read data from their buckets, as well as search for specific entries using query operations.
post
/api/v1/b/:bucket_name/:entry_name
Write a record to an entry
post
/api/v1/b/:bucket_name/:entry_name/batch
Write batch of records
get
/api/v1/b/:bucket_name/:entry_name
Get a record from an entry
head
/api/v1/b/:bucket_name/:entry_name
Get only meta information about record
get
/api/v1/b/:bucket_name/:entry_name/batch
Get a bulk of records from an entry
head
/api/v1/b/:bucket_name/:entry_name/batch
Get only meta information in bulk
get
/api/v1/b/:bucket_name/:entry_name/q
Query records for a time interval
delete
/api/v1/b/:bucket_name/:entry_name
Remove entry
Last modified 1mo ago