DocsAPI Reference
  • Data API
    • POSTGet BIN
LogoLogo
Login
Login
Data APIRecords

Delete Record

DELETE
/v1/vaults/:vaultID/:tableName/:ID
DELETE
/v1/vaults/:vaultID/:tableName/:ID
1curl -X DELETE https://{{vault_url_identifier}}.vault.skyflowapis.com/v1/vaults/d4410ea01d83473ca09a24c6b03096d4/persons/d4410ea0-1d83-473c-a09a-24c6b03096d4 \
2 -H "Authorization: Bearer <token>"
Try it
1{
2 "skyflow_id": "4423ccdf-75eb-4e2e-abfc-acb43b1440cd",
3 "deleted": true
4}
Deletes the specified record from a table.<br /><br /><b>Note:</b> This method doesn't delete transient field tokens. Transient field values are available until they expire based on the fields' time-to-live (TTL) setting.
Was this page helpful?
Previous

Upload File

Next
Built with
Upload File

Authentication

AuthorizationBearer
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Path parameters

vaultIDstringRequired
ID of the vault.
tableNamestringRequired
Name of the table.
IDstringRequired
`skyflow_id` of the record to delete.
ID of the vault.
Name of the table.

Response

A successful response.
skyflow_idstring or null
ID of the deleted record.
deletedboolean or null
If `true`, the record was deleted.

Errors

If true, the record was deleted.

skyflow_id of the record to delete.

Deletes the specified record from a table.

Note: This method doesn’t delete transient field tokens. Transient field values are available until they expire based on the fields’ time-to-live (TTL) setting.

Bearer authentication of the form Bearer <token>, where token is your auth token.