Skip to main content
GET
/
raw
/
dbs
/
{dbName}
/
tables
/
{tableName}
/
rows
/
{rowKey}
JavaScript SDK
await client.raw.retrieveRow('My company', 'Customers', 'customer1');
{
  "key": "<string>",
  "columns": {},
  "lastUpdatedTime": 1730204346000
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Path Parameters

dbName
string
required

Name of the database to retrieve the row from.

Required string length: 1 - 32
tableName
string
required

Name of the table to retrieve the row from.

Required string length: 1 - 64
rowKey
string
required

Row key of the row to retrieve.

Response

200 - application/json

Single row from the raw database table with the specified rowKey.

key
string
required

Unique row key

columns
object
required

Row data stored as a JSON object.

lastUpdatedTime
integer<int64>
required

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

Required range: x >= 0
Example:

1730204346000

Last modified on April 23, 2026