woocommerce_api_create_order

woocommerce_api_create_order

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

See hook in core

Displaying hooks found in version: woocommerce.8.9.3

do_action('woocommerce_api_create_order') is found 2 times:

  • /includes/legacy/api/v2/class-wc-api-orders.php line 464
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
        $this->server->send_status( 201 );
     
        wc_delete_shop_order_transients( $order );
     
        do_action( 'woocommerce_api_create_order', $order->get_id(), $data, $this );
        do_action( 'woocommerce_new_order', $order->get_id() );
     
        return $this->get_order( $order->get_id() );
    } catch ( WC_Data_Exception $e ) {
        return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => 400 ) );
    } catch ( WC_API_Exception $e ) {
  • /includes/legacy/api/v3/class-wc-api-orders.php line 504
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
        $this->server->send_status( 201 );
     
        wc_delete_shop_order_transients( $order );
     
        do_action( 'woocommerce_api_create_order', $order->get_id(), $data, $this );
        do_action( 'woocommerce_new_order', $order->get_id() );
     
        return $this->get_order( $order->get_id() );
    } catch ( WC_Data_Exception $e ) {
        return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => 400 ) );
    } catch ( WC_API_Exception $e ) {