woocommerce_api_create_order_note

woocommerce_api_create_order_note

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.8.9.3

do_action('woocommerce_api_create_order_note') is found 2 times:

  • /includes/legacy/api/v2/class-wc-api-orders.php line 1322
    1319
    1320
    1321
    1322
    1323
    1324
    1325
    1326
    1327
    1328
        // HTTP 201 Created
        $this->server->send_status( 201 );
     
        do_action( 'woocommerce_api_create_order_note', $note_id, $order_id, $this );
     
        return $this->get_order_note( $order->get_id(), $note_id );
    } catch ( WC_Data_Exception $e ) {
        return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => 400 ) );
    } catch ( WC_API_Exception $e ) {
        return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) );
  • /includes/legacy/api/v3/class-wc-api-orders.php line 1367
    1364
    1365
    1366
    1367
    1368
    1369
    1370
    1371
    1372
    1373
        // HTTP 201 Created
        $this->server->send_status( 201 );
     
        do_action( 'woocommerce_api_create_order_note', $note_id, $order_id, $this );
     
        return $this->get_order_note( $order->get_id(), $note_id );
    } catch ( WC_Data_Exception $e ) {
        return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => 400 ) );
    } catch ( WC_API_Exception $e ) {
        return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) );