Delete a record

To delete a record, use the HTTP DELETE method, specifying the table name and the primary key value of the record in the URL.

Component

Description

HTTP method

DELETE

URL

https://host/fmi/odata/version/database-name/table-name (primary-key-value)

host – FileMaker Cloud or FileMaker Server host name

version – the OData version, always v4

database-name – the name of the hosted database

table-name - the name of the table

primary-key-value - the unique identifier value of the record

Example: /fmi/odata/v4/ContactMgmt/Contacts('ALFKI')

FileMaker information

  • You can delete multiple records by specifying $filter criteria.