Magento 2x web rest api: Anyone can tell me about endpoint to get order status from store configuration?Magento 2 : How to get request and send response in custom REST API?Magento 2: How do I notify a customer about an order status change done via the REST Api?Magento 2 : Can the REST API return plain text?Unable to get order details using magento 2 rest apiMagento 2.2.2 Upgrade failed due to Dotmailer severe issues API endpointMagento 2 : REST API responseMagento 2: Can I set a completely custom API endpoint without /rest/V1/?Magento 2.1 Getting web API error while placing the orderWeb API: Product set use default status for store viewcustom_attributes not returning from Magento 2 REST API

Does the Nuka-Cola bottler actually generate nuka cola?

Extracting data from Plot

A Salute to Poetry

Increase speed altering column on large table to NON NULL

C++ logging library

What should I be wary of when insurer is taking a lot of time to decide whether car is repairable or a total loss?

Is it safe to remove python 2.7.15rc1 from Ubuntu 18.04?

Why isn't Bash trap working if output is redirected to stdout?

Does a (nice) centerless group always have a centerless profinite completion?

How do we say "within a kilometer radius spherically"?

How to create a cubic equation that include sums of the roots of another cubic equation

Tikz-cd diagram arrow passing under a node - not crossing it

Should I put programming books I wrote a few years ago on my resume?

How to avoid typing 'git' at the begining of every Git command

Why did the World Bank set the global poverty line at $1.90?

Can there be absolute velocity?

I've been given a project I can't complete, what should I do?

Flat with smooth fibers implies formally smooth?

Zig-zag function - coded solution

What STL algorithm can determine if exactly one item in a container satisfies a predicate?

Assigning function to function pointer, const argument correctness?

Why are MBA programs closing in the United States?

Trying to get (more) accurate readings from thermistor (electronics, math, and code inside)

What differences exist between adamantine and adamantite in all editions of D&D?



Magento 2x web rest api: Anyone can tell me about endpoint to get order status from store configuration?


Magento 2 : How to get request and send response in custom REST API?Magento 2: How do I notify a customer about an order status change done via the REST Api?Magento 2 : Can the REST API return plain text?Unable to get order details using magento 2 rest apiMagento 2.2.2 Upgrade failed due to Dotmailer severe issues API endpointMagento 2 : REST API responseMagento 2: Can I set a completely custom API endpoint without /rest/V1/?Magento 2.1 Getting web API error while placing the orderWeb API: Product set use default status for store viewcustom_attributes not returning from Magento 2 REST API






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I wonder if there is endpoint to get orderstatus by using api in magento 2x. As I check there is issue that created since 2016 but closed because report in github link










share|improve this question






















  • I'm not sure if there is, but creating such an endpoint is fairly easy.

    – vitoriodachef
    Jun 4 at 7:15











  • what you mean by "creating such an endpoint is fairly easy" ?

    – Chileap Chhin
    Jun 4 at 7:17











  • Well, API creation is documented here devdocs.magento.com/guides/v2.3/extension-dev-guide/… all that is left to do is find the entity that tracks the order status values.

    – vitoriodachef
    Jun 4 at 7:20











  • All possible values are stored in the sales_order_status table

    – vitoriodachef
    Jun 4 at 7:21






  • 1





    there's no specific endpoint for that unless you define your own

    – fmsthird
    Jun 4 at 7:57

















1















I wonder if there is endpoint to get orderstatus by using api in magento 2x. As I check there is issue that created since 2016 but closed because report in github link










share|improve this question






















  • I'm not sure if there is, but creating such an endpoint is fairly easy.

    – vitoriodachef
    Jun 4 at 7:15











  • what you mean by "creating such an endpoint is fairly easy" ?

    – Chileap Chhin
    Jun 4 at 7:17











  • Well, API creation is documented here devdocs.magento.com/guides/v2.3/extension-dev-guide/… all that is left to do is find the entity that tracks the order status values.

    – vitoriodachef
    Jun 4 at 7:20











  • All possible values are stored in the sales_order_status table

    – vitoriodachef
    Jun 4 at 7:21






  • 1





    there's no specific endpoint for that unless you define your own

    – fmsthird
    Jun 4 at 7:57













1












1








1








I wonder if there is endpoint to get orderstatus by using api in magento 2x. As I check there is issue that created since 2016 but closed because report in github link










share|improve this question














I wonder if there is endpoint to get orderstatus by using api in magento 2x. As I check there is issue that created since 2016 but closed because report in github link







magento2 configuration order-status webapi






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jun 4 at 7:11









Chileap ChhinChileap Chhin

161




161












  • I'm not sure if there is, but creating such an endpoint is fairly easy.

    – vitoriodachef
    Jun 4 at 7:15











  • what you mean by "creating such an endpoint is fairly easy" ?

    – Chileap Chhin
    Jun 4 at 7:17











  • Well, API creation is documented here devdocs.magento.com/guides/v2.3/extension-dev-guide/… all that is left to do is find the entity that tracks the order status values.

    – vitoriodachef
    Jun 4 at 7:20











  • All possible values are stored in the sales_order_status table

    – vitoriodachef
    Jun 4 at 7:21






  • 1





    there's no specific endpoint for that unless you define your own

    – fmsthird
    Jun 4 at 7:57

















  • I'm not sure if there is, but creating such an endpoint is fairly easy.

    – vitoriodachef
    Jun 4 at 7:15











  • what you mean by "creating such an endpoint is fairly easy" ?

    – Chileap Chhin
    Jun 4 at 7:17











  • Well, API creation is documented here devdocs.magento.com/guides/v2.3/extension-dev-guide/… all that is left to do is find the entity that tracks the order status values.

    – vitoriodachef
    Jun 4 at 7:20











  • All possible values are stored in the sales_order_status table

    – vitoriodachef
    Jun 4 at 7:21






  • 1





    there's no specific endpoint for that unless you define your own

    – fmsthird
    Jun 4 at 7:57
















I'm not sure if there is, but creating such an endpoint is fairly easy.

– vitoriodachef
Jun 4 at 7:15





I'm not sure if there is, but creating such an endpoint is fairly easy.

– vitoriodachef
Jun 4 at 7:15













what you mean by "creating such an endpoint is fairly easy" ?

– Chileap Chhin
Jun 4 at 7:17





what you mean by "creating such an endpoint is fairly easy" ?

– Chileap Chhin
Jun 4 at 7:17













Well, API creation is documented here devdocs.magento.com/guides/v2.3/extension-dev-guide/… all that is left to do is find the entity that tracks the order status values.

– vitoriodachef
Jun 4 at 7:20





Well, API creation is documented here devdocs.magento.com/guides/v2.3/extension-dev-guide/… all that is left to do is find the entity that tracks the order status values.

– vitoriodachef
Jun 4 at 7:20













All possible values are stored in the sales_order_status table

– vitoriodachef
Jun 4 at 7:21





All possible values are stored in the sales_order_status table

– vitoriodachef
Jun 4 at 7:21




1




1





there's no specific endpoint for that unless you define your own

– fmsthird
Jun 4 at 7:57





there's no specific endpoint for that unless you define your own

– fmsthird
Jun 4 at 7:57










0






active

oldest

votes












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%2f277175%2fmagento-2x-web-rest-api-anyone-can-tell-me-about-endpoint-to-get-order-status-f%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















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%2f277175%2fmagento-2x-web-rest-api-anyone-can-tell-me-about-endpoint-to-get-order-status-f%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

Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

Area configuration aggregation error after install Porto themeMagento 2.1 CE Installed but front/backend not loading/workingCSS not loading on page within Magento 2 pageCannot install module in Magento 2no commands defined in the “setup” namespace. in Magento2Magento 2: Static files are present but shows 404Why do i have to always run the commands to clean cache in Magento 2.1.8?Failure reason: 'Unable to unserialize value.'Error 500 after magento migrationIn production mode the site does not loadMagento 2 : Error 500 after installing

Middle Expansion Olielle Resaix Definition: Uttering songs of triumph shouting with joy triumphant exulting Sejunction Journal 붙다 달 고급 품목 외출 The stretch trades the screeching tin. Definition: The act of speaking with a drawl a drawl Cough Sand Definition: An uproar a quarrel a noisy outbreak Shake Iron Publicize Horse House Baby 사과 Resaix Flaggy Jelly Temporary Unequaled Puppet A drop in the bucket Shrew 성격 회원 성질 미팅 The burn frames the tacky quality. Materialistic The smoke reduces the way. Yammoe Nondescript Cheek 얼굴 배 약하다 날리다 타다 The illegal country shows the iron. Help Rule Drearien Smoke Teaching Meaty Wasp Abraham Lincoln Jaws 진심 수리하다 Size Cork Idea Convert Think Lark John Lennon 거울 청소 군 추천하다 아이스크림