Go
Delete a record
Remove a record using your record identifier
_, err := client.DeleteARecord(ctx, &sdk.DeleteAPIV1IngestRequest{ClientID: "post-123"})DeleteARecord(context.Context, *sdk.DeleteAPIV1IngestRequest, ...option.RequestOption) takes your application ClientID, not an Insion record ID, and returns *sdk.SuccessResponse plus error.
Parameters and behavior
DeleteAPIV1IngestRequest contains one required field: ClientID. Use the same value supplied to moderation or ingestion. Invoke it when your application permanently removes content; on success the response confirms the operation, while a missing or inaccessible record is returned as an error.