method = WP_REST_Server::EDITABLE; $this->route = '/v3/contacts/(?P[\\d]+)/notes/(?P[\\d]+)'; } public function default_args_values() { return array( 'contact_id' => 0, 'note_id' => 0, 'notes' => array(), ); } public function process_api_call() { $contact_id = $this->get_sanitized_arg( 'contact_id', 'key' ); if ( empty( $contact_id ) ) { $this->response_code = 404; return $this->error_response( __( 'Contact ID is mandatory', 'wp-marketing-automations' ) ); } $note_id = $this->get_sanitized_arg( 'note_id', 'key' ); if ( empty( $note_id ) ) { $this->response_code = 404; return $this->error_response( __( 'Note ID is mandatory', 'wp-marketing-automations' ) ); } $notes = $this->args['notes']; if ( empty( $notes ) ) { $this->response_code = 404; return $this->error_response( __( 'Notes are mandatory', 'wp-marketing-automations' ) ); } $contact = new BWFCRM_Contact( $contact_id ); if ( ! $contact->is_contact_exists() ) { $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_updated = $contact->update_contact_note( $notes, $note_id ); if ( false === $note_updated || is_wp_error( $note_updated ) ) { $this->response_code = 400; return $this->error_response( __( 'Unable to update note of contact', 'wp-marketing-automations' ) ); } $this->response_code = 200; return $this->success_response( [], __( 'Contact note updated', 'wp-marketing-automations' ) ); } } BWFAN_API_Loader::register( 'BWFAN_API_Update_Contact_Note' );