Get Record By ID

Returns the specified record from a table.

Path parameters

vaultIDstringRequired
ID of the vault.
tableNamestringRequired
Name of the table.
IDstringRequired

skyflow_id of the record.

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

redactionenumOptionalDefaults to DEFAULT
Redaction level to enforce for the returned record. Subject to policies assigned to the API caller.
Allowed values:
tokenizationbooleanOptional

If true, this operation returns tokens for fields with tokenization enabled. Only applicable if skyflow_id values are specified.

fieldslist of stringsOptional

Fields to return for the record, with one value per fields URL parameter. For example, ?fields=abc&fields=123.

If not specified, returns all fields.

downloadURLbooleanOptional

If true, returns download URLs for fields with a file data type. URLs are valid for 15 minutes. If virus scanning is enabled, only returns if the file is clean.

Response

A successful response.
fieldsmap from strings to any or null

Fields and values for the record. For example, {'field_1':'value_1', 'field_2':'value_2'}.

tokensmap from strings to any or null

Fields and tokens for the record. For example, {'field_1':'token_1', 'field_2':'token_2'}.

Errors