TypeScript
Delete a record
Remove a record using your record identifier
await client.deleteARecord({ clientId: "post-123" });Pass the same clientId used when the record was created. The method returns SuccessResponse after the record is removed.
Deleting a record only requires your client identifier; do not pass the Insion record ID. Treat deletion as part of your own content lifecycle, for example when a post is permanently removed from your application.