TypeScript
Retrieve a record
Retrieve one record by its Insion record ID
const record = await client.retrieveARecord({ recordId: "rec_123" });recordId is the Insion ID returned by moderation, ingestion, or a list operation. The response is RecordResponse with the record in data.
Use this method when you need the latest stored record, including its moderation status, timestamps, associated user, and metadata. Use List records when you only have your own clientId or need to search multiple records.