action sakari_contacts_remove { label: "Deletes a contact" provider: sakari method: DELETE path: "/v1/accounts/{accountId}/contacts/{contactId}" encoding: json input: { type: "object" properties: { contactId: { type: "string" } } required: ["contactId"] additionalProperties: false } output: { type: "object" properties: { success: { type: "boolean" } } } }