InsionInsion
C#

Retrieve a record

Retrieve one record by its Insion record ID

var response = await client.RetrieveARecordAsync(new GetApiV1RecordsRecordIdRequest { RecordId = "rec_123" });

RetrieveARecordAsync(GetApiV1RecordsRecordIdRequest, RequestOptions?, CancellationToken) requires the Insion RecordId obtained from an earlier response. The record is returned in response.Data.

The request object contains only RecordId; it is not interchangeable with your application ClientId. Use this method when you need the latest stored record, including moderation status, timestamps, user association, and metadata. Use ListRecordsAsync for searches and cursor traversal.