method = WP_REST_Server::DELETABLE; $this->route = '/v3/contacts/(?P[\\d]+)/notes/(?P[\\d]+)'; } public function default_args_values() { return array( 'contact_id' => 0, 'note_id' => 0, ); } public function process_api_call() { /** checking if search present in params **/ $contact_id = $this->get_sanitized_arg( 'contact_id', 'text_field' ); if ( empty( $contact_id ) ) { return $this->error_response( __( 'Contact id is mandatory', 'wp-marketing-automations' ) ); } $contact = new BWFCRM_Contact( $contact_id ); if ( ! $contact instanceof BWFCRM_Contact || 0 === $contact->get_id() ) { $this->response_code = 404; /* translators: 1: Contact ID */ return $this->error_response( sprintf( __( 'No contact found with given id #%1$d', 'wp-marketing-automations' ), $contact_id ) ); } $note_id = intval( $this->get_sanitized_arg( 'note_id', 'key' ) ); $delete_contact_note_result = $contact->delete_notes( $note_id ); if ( ! $delete_contact_note_result ) { $this->response_code = 404; /* translators: 1: Contact ID */ return $this->error_response( sprintf( __( 'Unable to delete the note for contact #%1$d', 'wp-marketing-automations' ), $contact_id ) ); } $this->response_code = 200; $success_message = __( 'Contact notes deleted', 'wp-marketing-automations' ); return $this->success_response( array( 'contact_id' => $contact_id ), $success_message ); } } BWFAN_API_Loader::register( 'BWFAN_API_Delete_Contact_Note' );