Magento 2 api : order status The Next CEO of Stack OverflowHow to integrate magento REST API with third party?How to query Magento API for newest ordersNo response from POST to custom REST Api routeMagento SOAP (v1) API causes fatal error getSelect() after completed orderTrying to add an order_item attribute into the REST APIMagento 2.0 Rest APi orders - multiple ID filtersHow to create order programmatically in Magento 2?Unable to get order details using magento 2 rest apiMagento2 : Update translation using API responseGetting order id for guest checkout order

Direct Implications Between USA and UK in Event of No-Deal Brexit

Does int main() need a declaration on C++?

Incomplete cube

Are British MPs missing the point, with these 'Indicative Votes'?

Is a linearly independent set whose span is dense a Schauder basis?

Calculating discount not working

How badly should I try to prevent a user from XSSing themselves?

How did scripture get the name bible?

What steps are necessary to read a Modern SSD in Medieval Europe?

How do I secure a TV wall mount?

Gauss' Posthumous Publications?

Could a dragon use its wings to swim?

How to find if SQL server backup is encrypted with TDE without restoring the backup

Could a dragon use hot air to help it take off?

logical reads on global temp table, but not on session-level temp table

How can I separate the number from the unit in argument?

Can Sri Krishna be called 'a person'?

Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?

Does Germany produce more waste than the US?

Arrows in tikz Markov chain diagram overlap

A hang glider, sudden unexpected lift to 25,000 feet altitude, what could do this?

Another proof that dividing by 0 does not exist -- is it right?

How to implement Comparable so it is consistent with identity-equality

Calculate the Mean mean of two numbers



Magento 2 api : order status



The Next CEO of Stack OverflowHow to integrate magento REST API with third party?How to query Magento API for newest ordersNo response from POST to custom REST Api routeMagento SOAP (v1) API causes fatal error getSelect() after completed orderTrying to add an order_item attribute into the REST APIMagento 2.0 Rest APi orders - multiple ID filtersHow to create order programmatically in Magento 2?Unable to get order details using magento 2 rest apiMagento2 : Update translation using API responseGetting order id for guest checkout order










0















I am looking for a way to update order status with rest api (php) based on order ID.



I tried several things from the doc (well at least, I have found below code Without success)



 $data = array(
"entity" => array(
'entity_id'=>'000000159',
'status'=>'pending2'
)
);

$retour = $this->api->put("orders",$data );


How can I accomplish this.










share|improve this question
















bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    'entity_id'=>'000000159' it's not entity_id but real_order_id

    – Adrian Szulc
    Oct 9 '17 at 16:09















0















I am looking for a way to update order status with rest api (php) based on order ID.



I tried several things from the doc (well at least, I have found below code Without success)



 $data = array(
"entity" => array(
'entity_id'=>'000000159',
'status'=>'pending2'
)
);

$retour = $this->api->put("orders",$data );


How can I accomplish this.










share|improve this question
















bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    'entity_id'=>'000000159' it's not entity_id but real_order_id

    – Adrian Szulc
    Oct 9 '17 at 16:09













0












0








0








I am looking for a way to update order status with rest api (php) based on order ID.



I tried several things from the doc (well at least, I have found below code Without success)



 $data = array(
"entity" => array(
'entity_id'=>'000000159',
'status'=>'pending2'
)
);

$retour = $this->api->put("orders",$data );


How can I accomplish this.










share|improve this question
















I am looking for a way to update order status with rest api (php) based on order ID.



I tried several things from the doc (well at least, I have found below code Without success)



 $data = array(
"entity" => array(
'entity_id'=>'000000159',
'status'=>'pending2'
)
);

$retour = $this->api->put("orders",$data );


How can I accomplish this.







magento2 api sales-order






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 9 '18 at 9:40









Saravanan DS

5091624




5091624










asked Oct 9 '17 at 15:59









David NDavid N

156




156





bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.









  • 1





    'entity_id'=>'000000159' it's not entity_id but real_order_id

    – Adrian Szulc
    Oct 9 '17 at 16:09












  • 1





    'entity_id'=>'000000159' it's not entity_id but real_order_id

    – Adrian Szulc
    Oct 9 '17 at 16:09







1




1





'entity_id'=>'000000159' it's not entity_id but real_order_id

– Adrian Szulc
Oct 9 '17 at 16:09





'entity_id'=>'000000159' it's not entity_id but real_order_id

– Adrian Szulc
Oct 9 '17 at 16:09










1 Answer
1






active

oldest

votes


















0














$entity_id = 955;
$request_url='http://example.com/rest/V1/orders';
$data_json = [
"entity"=> [
"entity_id" => $entity_id,
"state" => "processing",
"status" => "Processing"
]
];
$data_string = json_encode($data_json);
$ch = curl_init($request_url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Authorization: Bearer '.json_decode($token),
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$response = curl_exec($ch);
$response = json_decode($response);
print_r($response);
curl_close($ch);





share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "479"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f196499%2fmagento-2-api-order-status%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    $entity_id = 955;
    $request_url='http://example.com/rest/V1/orders';
    $data_json = [
    "entity"=> [
    "entity_id" => $entity_id,
    "state" => "processing",
    "status" => "Processing"
    ]
    ];
    $data_string = json_encode($data_json);
    $ch = curl_init($request_url);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Authorization: Bearer '.json_decode($token),
    'Content-Type: application/json',
    'Content-Length: ' . strlen($data_string))
    );
    $response = curl_exec($ch);
    $response = json_decode($response);
    print_r($response);
    curl_close($ch);





    share|improve this answer



























      0














      $entity_id = 955;
      $request_url='http://example.com/rest/V1/orders';
      $data_json = [
      "entity"=> [
      "entity_id" => $entity_id,
      "state" => "processing",
      "status" => "Processing"
      ]
      ];
      $data_string = json_encode($data_json);
      $ch = curl_init($request_url);
      curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
      curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
      curl_setopt($ch, CURLOPT_HTTPHEADER, array(
      'Authorization: Bearer '.json_decode($token),
      'Content-Type: application/json',
      'Content-Length: ' . strlen($data_string))
      );
      $response = curl_exec($ch);
      $response = json_decode($response);
      print_r($response);
      curl_close($ch);





      share|improve this answer

























        0












        0








        0







        $entity_id = 955;
        $request_url='http://example.com/rest/V1/orders';
        $data_json = [
        "entity"=> [
        "entity_id" => $entity_id,
        "state" => "processing",
        "status" => "Processing"
        ]
        ];
        $data_string = json_encode($data_json);
        $ch = curl_init($request_url);
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
        'Authorization: Bearer '.json_decode($token),
        'Content-Type: application/json',
        'Content-Length: ' . strlen($data_string))
        );
        $response = curl_exec($ch);
        $response = json_decode($response);
        print_r($response);
        curl_close($ch);





        share|improve this answer













        $entity_id = 955;
        $request_url='http://example.com/rest/V1/orders';
        $data_json = [
        "entity"=> [
        "entity_id" => $entity_id,
        "state" => "processing",
        "status" => "Processing"
        ]
        ];
        $data_string = json_encode($data_json);
        $ch = curl_init($request_url);
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
        'Authorization: Bearer '.json_decode($token),
        'Content-Type: application/json',
        'Content-Length: ' . strlen($data_string))
        );
        $response = curl_exec($ch);
        $response = json_decode($response);
        print_r($response);
        curl_close($ch);






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 9 '18 at 9:31









        SudishresthaSudishrestha

        1




        1



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Magento Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f196499%2fmagento-2-api-order-status%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How to remove this toilet supply line that seems to have no nut? Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Toilet Supply Line and Valve LeakingHow do I repair this leaking toilet supply nut?What is causing toilet supply water leaks above the coupling nut?How is this toilet flange attached?How can I disconnect my water line from the toilet?Toilet supply line leaking at toilet connectionHow to tension toilet handle nut without handle sticking?Replace Toilet Water Supply LineWhat material is this toilet water supply line?Toilet supply line/tube sprays water from below the coupling nut

            Manr CGgsta Nncllz Rde x k meeOo Yyo Pv Ww t Uk kk