InsionInsion
Java

Delete a record

Remove a record using your record identifier

client.deleteARecord(
    DeleteApiV1IngestRequest.builder().clientId("post-123").build()
);

Pass the same application clientId used to create the record. The method returns SuccessResponse; it does not take an Insion record ID.

Method signature

SuccessResponse deleteARecord(DeleteApiV1IngestRequest request)
SuccessResponse deleteARecord(DeleteApiV1IngestRequest request, RequestOptions options)

DeleteApiV1IngestRequest.builder().clientId(...) is the complete required request. Call this as part of your own permanent-content deletion flow; a successful result confirms that Insion removed the record.

On this page