_delete

Deletes an Address record.

Parameters

id

The ID of the Address record to be deleted.

Example

FM_api('Address_delete',[
    'id'=>'30181'
  ]
);

Results

On Success

{"ok":1}

On Failure

If the "id" parameter does not match the ID of an existing Address record.

{"error":"address record not found"}

If the "id" parameter is not set or has a value less than 1:

{"error":"missing or invalid parameter: id"}

Last updated