Magento 2 - Need to fetch all available Order statuses using REST APIMagento 2 as a headless solutionGet order/shipment details by tracking number magento 2Unable to get order details using magento 2 rest apiMagento 1.9 - Create order using REST APIAdding extension attributes to Order API EndpointCancel Order in Magento 2 using REST api failsMagento 2 REST API - Override Item Price while adding to CartMagento 2.2.2 REST API - I need to change the customer password using REST APIMagento 2 REST API - Update Payment MethodFetch all specific customer's order using Customer token in magento 2 REST API?
Basic transistor circuit
What's the term for a group of people who enjoy literary works?
Why are sugars in whole fruits not digested the same way sugars in juice are?
Is Norway in the Single Market?
Export economy of Mars
Is Illustrator accurate for business card sizes?
Plotting Chebyshev polynomials using PolarPlot and FilledCurve
The grades of the students in a class
Why are prop blades not shaped like household fan blades?
Overprovisioning SSD on ubuntu. How? Ubuntu 19.04 Samsung SSD 860
How is Sword Coast North governed?
Adding a (stair/baby) gate without facing walls
Backpacking with incontinence
When did J.K. Rowling decide to make Ron and Hermione a couple?
What is the difference between 2/4 and 4/4 when it comes the accented beats?
Should I take up a Creative Writing online course?
Is the EU really banning "toxic propellants" in 2020? How is that going to work?
How to power down external drive safely
Accurately recalling the key - can everyone do it?
Is there a general term for the items in a directory?
Why have both: BJT and FET transistors on IC output?
Partial Fractions: Why does this shortcut method work?
Being told my "network" isn't PCI Complaint. I don't even have a server! Do I have to comply?
Reasons for using monsters as bioweapons
Magento 2 - Need to fetch all available Order statuses using REST API
Magento 2 as a headless solutionGet order/shipment details by tracking number magento 2Unable to get order details using magento 2 rest apiMagento 1.9 - Create order using REST APIAdding extension attributes to Order API EndpointCancel Order in Magento 2 using REST api failsMagento 2 REST API - Override Item Price while adding to CartMagento 2.2.2 REST API - I need to change the customer password using REST APIMagento 2 REST API - Update Payment MethodFetch all specific customer's order using Customer token in magento 2 REST API?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
There is REST API endpoint for specific order statuses
GET /V1/orders/:id/statuses
Reference: https://devdocs.magento.com/guides/v2.3/rest/list.html
But I am looking for approach to fetch all available order statuses using REST API because I am working on external system in which I need to fetch the required magento data.
Any help, experience and knowledge sharing would be appreciated
magento2 rest-api order-statuses
add a comment |
There is REST API endpoint for specific order statuses
GET /V1/orders/:id/statuses
Reference: https://devdocs.magento.com/guides/v2.3/rest/list.html
But I am looking for approach to fetch all available order statuses using REST API because I am working on external system in which I need to fetch the required magento data.
Any help, experience and knowledge sharing would be appreciated
magento2 rest-api order-statuses
Are you want just available order status list? Or Particular order status?
– Sweety Masmiya
Jul 24 at 6:34
All available order statuses list
– Muhammad Hasham
Jul 24 at 6:37
add a comment |
There is REST API endpoint for specific order statuses
GET /V1/orders/:id/statuses
Reference: https://devdocs.magento.com/guides/v2.3/rest/list.html
But I am looking for approach to fetch all available order statuses using REST API because I am working on external system in which I need to fetch the required magento data.
Any help, experience and knowledge sharing would be appreciated
magento2 rest-api order-statuses
There is REST API endpoint for specific order statuses
GET /V1/orders/:id/statuses
Reference: https://devdocs.magento.com/guides/v2.3/rest/list.html
But I am looking for approach to fetch all available order statuses using REST API because I am working on external system in which I need to fetch the required magento data.
Any help, experience and knowledge sharing would be appreciated
magento2 rest-api order-statuses
magento2 rest-api order-statuses
asked Jul 24 at 5:46
Muhammad HashamMuhammad Hasham
5,90610 gold badges31 silver badges81 bronze badges
5,90610 gold badges31 silver badges81 bronze badges
Are you want just available order status list? Or Particular order status?
– Sweety Masmiya
Jul 24 at 6:34
All available order statuses list
– Muhammad Hasham
Jul 24 at 6:37
add a comment |
Are you want just available order status list? Or Particular order status?
– Sweety Masmiya
Jul 24 at 6:34
All available order statuses list
– Muhammad Hasham
Jul 24 at 6:37
Are you want just available order status list? Or Particular order status?
– Sweety Masmiya
Jul 24 at 6:34
Are you want just available order status list? Or Particular order status?
– Sweety Masmiya
Jul 24 at 6:34
All available order statuses list
– Muhammad Hasham
Jul 24 at 6:37
All available order statuses list
– Muhammad Hasham
Jul 24 at 6:37
add a comment |
1 Answer
1
active
oldest
votes
I created module for that, You can follow this steps for that :
Step 1 : Create registration.php file at app/code/RH/OrderStatus
<?php
MagentoFrameworkComponentComponentRegistrar::register(
MagentoFrameworkComponentComponentRegistrar::MODULE,
'RH_OrderStatus',
__DIR__
);
Step 2 : Create module.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="RH_OrderStatus" setup_version="1.0.0"/>
</config>
Step 3 : Create webapi.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../app/code/Magento/Webapi/etc/webapi.xsd">
<route url="/V1/getorderstatus" method="GET">
<service class="RHOrderStatusApiGetorderstatus" method="getorderstatusarray"/>
<resources>
<resource ref="admin"/>
</resources>
</route>
</routes>
Step 4 : Create di.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
<preference for="RHOrderStatusApiGetorderstatus" type="RHOrderStatusModelGetorderstatusModel" />
</config>
Step 5 : Create Getorderstatus.php file at app/code/RH/OrderStatus/Api
<?php
namespace RHOrderStatusApi;
interface Getorderstatus
/**
* @api
* @return array
*/
public function getorderstatusarray();
Step 6 : Create GetorderstatusModel.php file at app/code/RH/OrderStatus/Model
<?php
namespace RHOrderStatusModel;
use RHOrderStatusApiGetorderstatus;
class GetorderstatusModel implements Getorderstatus
protected $statusCollectionFactory;
public function __construct(
MagentoSalesModelResourceModelOrderStatusCollectionFactory $statusCollectionFactory
)
$this->statusCollectionFactory = $statusCollectionFactory;
public function getorderstatusarray()
$options = $this->statusCollectionFactory->create()->toOptionArray();
return $options;
Now, Go to Admin -> System -> Integrations and Get Access Token value and set authorization value into postman application.
Then, execute base_url/rest/V1/getorderstatus
this URL in postman.
You will get all order status.
Hope, It will helpful for you.
1
I was looking for rest api endpoints for all available order statuses but there is none. So I decided to made my own custom rest api for all order statuses. I just finished it successfully and just going to share it in answer but you share it before. I did almost the same but you deserve credit. Anyways great work, keep coding :) thanks :) +1 for appreciation.
– Muhammad Hasham
Jul 24 at 7:14
My pleasure :) Happy coding !!
– Rohan Hapani
Jul 24 at 7:21
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f283088%2fmagento-2-need-to-fetch-all-available-order-statuses-using-rest-api%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
I created module for that, You can follow this steps for that :
Step 1 : Create registration.php file at app/code/RH/OrderStatus
<?php
MagentoFrameworkComponentComponentRegistrar::register(
MagentoFrameworkComponentComponentRegistrar::MODULE,
'RH_OrderStatus',
__DIR__
);
Step 2 : Create module.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="RH_OrderStatus" setup_version="1.0.0"/>
</config>
Step 3 : Create webapi.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../app/code/Magento/Webapi/etc/webapi.xsd">
<route url="/V1/getorderstatus" method="GET">
<service class="RHOrderStatusApiGetorderstatus" method="getorderstatusarray"/>
<resources>
<resource ref="admin"/>
</resources>
</route>
</routes>
Step 4 : Create di.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
<preference for="RHOrderStatusApiGetorderstatus" type="RHOrderStatusModelGetorderstatusModel" />
</config>
Step 5 : Create Getorderstatus.php file at app/code/RH/OrderStatus/Api
<?php
namespace RHOrderStatusApi;
interface Getorderstatus
/**
* @api
* @return array
*/
public function getorderstatusarray();
Step 6 : Create GetorderstatusModel.php file at app/code/RH/OrderStatus/Model
<?php
namespace RHOrderStatusModel;
use RHOrderStatusApiGetorderstatus;
class GetorderstatusModel implements Getorderstatus
protected $statusCollectionFactory;
public function __construct(
MagentoSalesModelResourceModelOrderStatusCollectionFactory $statusCollectionFactory
)
$this->statusCollectionFactory = $statusCollectionFactory;
public function getorderstatusarray()
$options = $this->statusCollectionFactory->create()->toOptionArray();
return $options;
Now, Go to Admin -> System -> Integrations and Get Access Token value and set authorization value into postman application.
Then, execute base_url/rest/V1/getorderstatus
this URL in postman.
You will get all order status.
Hope, It will helpful for you.
1
I was looking for rest api endpoints for all available order statuses but there is none. So I decided to made my own custom rest api for all order statuses. I just finished it successfully and just going to share it in answer but you share it before. I did almost the same but you deserve credit. Anyways great work, keep coding :) thanks :) +1 for appreciation.
– Muhammad Hasham
Jul 24 at 7:14
My pleasure :) Happy coding !!
– Rohan Hapani
Jul 24 at 7:21
add a comment |
I created module for that, You can follow this steps for that :
Step 1 : Create registration.php file at app/code/RH/OrderStatus
<?php
MagentoFrameworkComponentComponentRegistrar::register(
MagentoFrameworkComponentComponentRegistrar::MODULE,
'RH_OrderStatus',
__DIR__
);
Step 2 : Create module.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="RH_OrderStatus" setup_version="1.0.0"/>
</config>
Step 3 : Create webapi.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../app/code/Magento/Webapi/etc/webapi.xsd">
<route url="/V1/getorderstatus" method="GET">
<service class="RHOrderStatusApiGetorderstatus" method="getorderstatusarray"/>
<resources>
<resource ref="admin"/>
</resources>
</route>
</routes>
Step 4 : Create di.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
<preference for="RHOrderStatusApiGetorderstatus" type="RHOrderStatusModelGetorderstatusModel" />
</config>
Step 5 : Create Getorderstatus.php file at app/code/RH/OrderStatus/Api
<?php
namespace RHOrderStatusApi;
interface Getorderstatus
/**
* @api
* @return array
*/
public function getorderstatusarray();
Step 6 : Create GetorderstatusModel.php file at app/code/RH/OrderStatus/Model
<?php
namespace RHOrderStatusModel;
use RHOrderStatusApiGetorderstatus;
class GetorderstatusModel implements Getorderstatus
protected $statusCollectionFactory;
public function __construct(
MagentoSalesModelResourceModelOrderStatusCollectionFactory $statusCollectionFactory
)
$this->statusCollectionFactory = $statusCollectionFactory;
public function getorderstatusarray()
$options = $this->statusCollectionFactory->create()->toOptionArray();
return $options;
Now, Go to Admin -> System -> Integrations and Get Access Token value and set authorization value into postman application.
Then, execute base_url/rest/V1/getorderstatus
this URL in postman.
You will get all order status.
Hope, It will helpful for you.
1
I was looking for rest api endpoints for all available order statuses but there is none. So I decided to made my own custom rest api for all order statuses. I just finished it successfully and just going to share it in answer but you share it before. I did almost the same but you deserve credit. Anyways great work, keep coding :) thanks :) +1 for appreciation.
– Muhammad Hasham
Jul 24 at 7:14
My pleasure :) Happy coding !!
– Rohan Hapani
Jul 24 at 7:21
add a comment |
I created module for that, You can follow this steps for that :
Step 1 : Create registration.php file at app/code/RH/OrderStatus
<?php
MagentoFrameworkComponentComponentRegistrar::register(
MagentoFrameworkComponentComponentRegistrar::MODULE,
'RH_OrderStatus',
__DIR__
);
Step 2 : Create module.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="RH_OrderStatus" setup_version="1.0.0"/>
</config>
Step 3 : Create webapi.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../app/code/Magento/Webapi/etc/webapi.xsd">
<route url="/V1/getorderstatus" method="GET">
<service class="RHOrderStatusApiGetorderstatus" method="getorderstatusarray"/>
<resources>
<resource ref="admin"/>
</resources>
</route>
</routes>
Step 4 : Create di.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
<preference for="RHOrderStatusApiGetorderstatus" type="RHOrderStatusModelGetorderstatusModel" />
</config>
Step 5 : Create Getorderstatus.php file at app/code/RH/OrderStatus/Api
<?php
namespace RHOrderStatusApi;
interface Getorderstatus
/**
* @api
* @return array
*/
public function getorderstatusarray();
Step 6 : Create GetorderstatusModel.php file at app/code/RH/OrderStatus/Model
<?php
namespace RHOrderStatusModel;
use RHOrderStatusApiGetorderstatus;
class GetorderstatusModel implements Getorderstatus
protected $statusCollectionFactory;
public function __construct(
MagentoSalesModelResourceModelOrderStatusCollectionFactory $statusCollectionFactory
)
$this->statusCollectionFactory = $statusCollectionFactory;
public function getorderstatusarray()
$options = $this->statusCollectionFactory->create()->toOptionArray();
return $options;
Now, Go to Admin -> System -> Integrations and Get Access Token value and set authorization value into postman application.
Then, execute base_url/rest/V1/getorderstatus
this URL in postman.
You will get all order status.
Hope, It will helpful for you.
I created module for that, You can follow this steps for that :
Step 1 : Create registration.php file at app/code/RH/OrderStatus
<?php
MagentoFrameworkComponentComponentRegistrar::register(
MagentoFrameworkComponentComponentRegistrar::MODULE,
'RH_OrderStatus',
__DIR__
);
Step 2 : Create module.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="RH_OrderStatus" setup_version="1.0.0"/>
</config>
Step 3 : Create webapi.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../app/code/Magento/Webapi/etc/webapi.xsd">
<route url="/V1/getorderstatus" method="GET">
<service class="RHOrderStatusApiGetorderstatus" method="getorderstatusarray"/>
<resources>
<resource ref="admin"/>
</resources>
</route>
</routes>
Step 4 : Create di.xml file at app/code/RH/OrderStatus/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
<preference for="RHOrderStatusApiGetorderstatus" type="RHOrderStatusModelGetorderstatusModel" />
</config>
Step 5 : Create Getorderstatus.php file at app/code/RH/OrderStatus/Api
<?php
namespace RHOrderStatusApi;
interface Getorderstatus
/**
* @api
* @return array
*/
public function getorderstatusarray();
Step 6 : Create GetorderstatusModel.php file at app/code/RH/OrderStatus/Model
<?php
namespace RHOrderStatusModel;
use RHOrderStatusApiGetorderstatus;
class GetorderstatusModel implements Getorderstatus
protected $statusCollectionFactory;
public function __construct(
MagentoSalesModelResourceModelOrderStatusCollectionFactory $statusCollectionFactory
)
$this->statusCollectionFactory = $statusCollectionFactory;
public function getorderstatusarray()
$options = $this->statusCollectionFactory->create()->toOptionArray();
return $options;
Now, Go to Admin -> System -> Integrations and Get Access Token value and set authorization value into postman application.
Then, execute base_url/rest/V1/getorderstatus
this URL in postman.
You will get all order status.
Hope, It will helpful for you.
answered Jul 24 at 7:05
Rohan HapaniRohan Hapani
8,2064 gold badges21 silver badges66 bronze badges
8,2064 gold badges21 silver badges66 bronze badges
1
I was looking for rest api endpoints for all available order statuses but there is none. So I decided to made my own custom rest api for all order statuses. I just finished it successfully and just going to share it in answer but you share it before. I did almost the same but you deserve credit. Anyways great work, keep coding :) thanks :) +1 for appreciation.
– Muhammad Hasham
Jul 24 at 7:14
My pleasure :) Happy coding !!
– Rohan Hapani
Jul 24 at 7:21
add a comment |
1
I was looking for rest api endpoints for all available order statuses but there is none. So I decided to made my own custom rest api for all order statuses. I just finished it successfully and just going to share it in answer but you share it before. I did almost the same but you deserve credit. Anyways great work, keep coding :) thanks :) +1 for appreciation.
– Muhammad Hasham
Jul 24 at 7:14
My pleasure :) Happy coding !!
– Rohan Hapani
Jul 24 at 7:21
1
1
I was looking for rest api endpoints for all available order statuses but there is none. So I decided to made my own custom rest api for all order statuses. I just finished it successfully and just going to share it in answer but you share it before. I did almost the same but you deserve credit. Anyways great work, keep coding :) thanks :) +1 for appreciation.
– Muhammad Hasham
Jul 24 at 7:14
I was looking for rest api endpoints for all available order statuses but there is none. So I decided to made my own custom rest api for all order statuses. I just finished it successfully and just going to share it in answer but you share it before. I did almost the same but you deserve credit. Anyways great work, keep coding :) thanks :) +1 for appreciation.
– Muhammad Hasham
Jul 24 at 7:14
My pleasure :) Happy coding !!
– Rohan Hapani
Jul 24 at 7:21
My pleasure :) Happy coding !!
– Rohan Hapani
Jul 24 at 7:21
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f283088%2fmagento-2-need-to-fetch-all-available-order-statuses-using-rest-api%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Are you want just available order status list? Or Particular order status?
– Sweety Masmiya
Jul 24 at 6:34
All available order statuses list
– Muhammad Hasham
Jul 24 at 6:37