Retrieve row by key

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
path Parameters
dbName
required
string [ 1 .. 32 ] characters

Name of the database to retrieve the row from.

tableName
required
string [ 1 .. 64 ] characters

Name of the table to retrieve the row from.

rowKey
required
string

Row key of the row to retrieve.

Responses
200

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

get/raw/dbs/{dbName}/tables/{tableName}/rows/{rowKey}
Request samples
await client.raw.retrieveRow('My company', 'Customers', 'customer1');
Response samples
application/json
{
  • "key": "string",
  • "columns": { },
  • "lastUpdatedTime": 0
}