Include title / salutation at /order endpointMagento 2 Get Order Billing DetailsMagento 2 API ReferenceMagento2 export and import configurations instead of uploading the DBUnable to get order details using magento 2 rest apiAdd additional information to payment methodAdding extension attributes to Order API EndpointUnable to get salesorders and Customers From Magento 2.2 using REST APIMagento 2 Customizable Options for orders not appearing using APIHow to get the Admin code of an option from an attribute? REST APICalling M2 REST API from browser for anonymous users
Alternative to sending password over mail?
Assassin's bullet with mercury
Did Shadowfax go to Valinor?
Forgetting the musical notes while performing in concert
Memorizing the Keyboard
Is there a hemisphere-neutral way of specifying a season?
What is the intuition behind short exact sequences of groups; in particular, what is the intuition behind group extensions?
Has there ever been an airliner design involving reducing generator load by installing solar panels?
Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?
Stopping power of mountain vs road bike
How can saying a song's name be a copyright violation?
Neighboring nodes in the network
Today is the Center
What about the virus in 12 Monkeys?
Blender 2.8 I can't see vertices, edges or faces in edit mode
90's TV series where a boy goes to another dimension through portal near power lines
Modeling an IP Address
Can I ask the recruiters in my resume to put the reason why I am rejected?
How do I write bicross product symbols in latex?
AES: Why is it a good practice to use only the first 16bytes of a hash for encryption?
What is the word for reserving something for yourself before others do?
Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?
Is the Joker left-handed?
Can one be a co-translator of a book, if he does not know the language that the book is translated into?
Include title / salutation at /order endpoint
Magento 2 Get Order Billing DetailsMagento 2 API ReferenceMagento2 export and import configurations instead of uploading the DBUnable to get order details using magento 2 rest apiAdd additional information to payment methodAdding extension attributes to Order API EndpointUnable to get salesorders and Customers From Magento 2.2 using REST APIMagento 2 Customizable Options for orders not appearing using APIHow to get the Admin code of an option from an attribute? REST APICalling M2 REST API from browser for anonymous users
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Is there anyway of getting a customers title (mr / mrs etc) to the /rest/V1/orders/orderID endpoint? It currently doesn't appear.
https://devdocs.magento.com/swagger/index.html#!/salesOrderRepositoryV1
Seems like a bit of an oversight not to include this by default...
magento2 rest-api
add a comment |
Is there anyway of getting a customers title (mr / mrs etc) to the /rest/V1/orders/orderID endpoint? It currently doesn't appear.
https://devdocs.magento.com/swagger/index.html#!/salesOrderRepositoryV1
Seems like a bit of an oversight not to include this by default...
magento2 rest-api
add a comment |
Is there anyway of getting a customers title (mr / mrs etc) to the /rest/V1/orders/orderID endpoint? It currently doesn't appear.
https://devdocs.magento.com/swagger/index.html#!/salesOrderRepositoryV1
Seems like a bit of an oversight not to include this by default...
magento2 rest-api
Is there anyway of getting a customers title (mr / mrs etc) to the /rest/V1/orders/orderID endpoint? It currently doesn't appear.
https://devdocs.magento.com/swagger/index.html#!/salesOrderRepositoryV1
Seems like a bit of an oversight not to include this by default...
magento2 rest-api
magento2 rest-api
asked 2 days ago
BigDaddyLBigDaddyL
170113
170113
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Actually, by default, it is included. If you check thoroughly the response model Schema
of salesOrderRepositoryV1 endpoint /V1/orders/id you can find the "customer_prefix": "string",
which is responsible for fetching the customer title.
This will only not show when the value is null or empty, otherwise it will display on response.
God I really am blind, was too caught up looking for "title" or "salutation". Thanks for this!
– BigDaddyL
2 days ago
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%2f268310%2finclude-title-salutation-at-order-endpoint%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
Actually, by default, it is included. If you check thoroughly the response model Schema
of salesOrderRepositoryV1 endpoint /V1/orders/id you can find the "customer_prefix": "string",
which is responsible for fetching the customer title.
This will only not show when the value is null or empty, otherwise it will display on response.
God I really am blind, was too caught up looking for "title" or "salutation". Thanks for this!
– BigDaddyL
2 days ago
add a comment |
Actually, by default, it is included. If you check thoroughly the response model Schema
of salesOrderRepositoryV1 endpoint /V1/orders/id you can find the "customer_prefix": "string",
which is responsible for fetching the customer title.
This will only not show when the value is null or empty, otherwise it will display on response.
God I really am blind, was too caught up looking for "title" or "salutation". Thanks for this!
– BigDaddyL
2 days ago
add a comment |
Actually, by default, it is included. If you check thoroughly the response model Schema
of salesOrderRepositoryV1 endpoint /V1/orders/id you can find the "customer_prefix": "string",
which is responsible for fetching the customer title.
This will only not show when the value is null or empty, otherwise it will display on response.
Actually, by default, it is included. If you check thoroughly the response model Schema
of salesOrderRepositoryV1 endpoint /V1/orders/id you can find the "customer_prefix": "string",
which is responsible for fetching the customer title.
This will only not show when the value is null or empty, otherwise it will display on response.
answered 2 days ago
magefmsmagefms
2,3772426
2,3772426
God I really am blind, was too caught up looking for "title" or "salutation". Thanks for this!
– BigDaddyL
2 days ago
add a comment |
God I really am blind, was too caught up looking for "title" or "salutation". Thanks for this!
– BigDaddyL
2 days ago
God I really am blind, was too caught up looking for "title" or "salutation". Thanks for this!
– BigDaddyL
2 days ago
God I really am blind, was too caught up looking for "title" or "salutation". Thanks for this!
– BigDaddyL
2 days ago
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%2f268310%2finclude-title-salutation-at-order-endpoint%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