InsionInsion
C#

Delete a record

Remove a record using your record identifier

await client.DeleteARecordAsync(new DeleteApiV1IngestRequest { ClientId = "post-123" });

DeleteARecordAsync(DeleteApiV1IngestRequest, RequestOptions?, CancellationToken) requires your application ClientId, not an Insion record ID. It returns SuccessResponse or throws if deletion fails.

Use the same ClientId supplied to moderation or ingestion. This method is appropriate for permanent content removal in your application; do not call it with RecordId from a response. Use per-call RequestOptions for a deletion-specific timeout, retry limit, or audit header.