Logo
OCI NoSQL Playground API Documentation

End-to-End Example

Number of APIs: 11


1. 1. Create a table - 1.1. Create a new table.

POST {{baseUrl}}/tables



2. 2. Desc the table created - 2.1. Get a list of tables in a compartment.

GET {{baseUrl}}/tables?compartmentId={{compartment_ocid}}&name=*&limit=1000&sortOrder=DESC&sortBy=timeCreated&lifecycleState=ALL



3. 2. Desc the table created - 2.2. Get table info by identifier.

GET {{baseUrl}}/tables/:tableNameOrId?compartmentId={{compartment_ocid}}



4. 3. CRUD operations on the table created - 3.2. Get a single row from the table by primary key.

GET {{baseUrl}}/tables/:tableNameOrId/rows?compartmentId={{compartment_ocid}}&key=id:1&consistency=EVENTUAL&timeoutInMs=5000



5. 3. CRUD operations on the table created - 3.3. Delete a single row from the table, by primary key.

DELETE {{baseUrl}}/tables/:tableNameOrId/rows?compartmentId={{compartment_oci

ENDPOINTS