Magento 2 order REST Api append Custom Attribute
I want to get Custom Attribute value which is already saved in database table, i just want to append it to my Sales order REST APi, i have tried adding extension attribute , i am able to get set and get functions in generation file , how do i show my custom attribute in my REST Api
magento2.2 custom-attributes rest-api extension-attributes
|
show 3 more comments
I want to get Custom Attribute value which is already saved in database table, i just want to append it to my Sales order REST APi, i have tried adding extension attribute , i am able to get set and get functions in generation file , how do i show my custom attribute in my REST Api
magento2.2 custom-attributes rest-api extension-attributes
you need to make custom api for the same
– Aditya Shah
Oct 10 '18 at 13:58
@AdityaShah i am using My custom API
– Banvari Lal
Oct 11 '18 at 5:29
inject the custom attribute intoxml, and add an observe for event ``sales_order_load_after
– Aditya Shah
Oct 11 '18 at 5:34
I have tried it, it didnt work for me
– Banvari Lal
Oct 11 '18 at 5:59
Please post your code here, so we can help.
– Aditya Shah
Oct 11 '18 at 6:03
|
show 3 more comments
I want to get Custom Attribute value which is already saved in database table, i just want to append it to my Sales order REST APi, i have tried adding extension attribute , i am able to get set and get functions in generation file , how do i show my custom attribute in my REST Api
magento2.2 custom-attributes rest-api extension-attributes
I want to get Custom Attribute value which is already saved in database table, i just want to append it to my Sales order REST APi, i have tried adding extension attribute , i am able to get set and get functions in generation file , how do i show my custom attribute in my REST Api
magento2.2 custom-attributes rest-api extension-attributes
magento2.2 custom-attributes rest-api extension-attributes
asked Oct 10 '18 at 13:19
Banvari LalBanvari Lal
1199
1199
you need to make custom api for the same
– Aditya Shah
Oct 10 '18 at 13:58
@AdityaShah i am using My custom API
– Banvari Lal
Oct 11 '18 at 5:29
inject the custom attribute intoxml, and add an observe for event ``sales_order_load_after
– Aditya Shah
Oct 11 '18 at 5:34
I have tried it, it didnt work for me
– Banvari Lal
Oct 11 '18 at 5:59
Please post your code here, so we can help.
– Aditya Shah
Oct 11 '18 at 6:03
|
show 3 more comments
you need to make custom api for the same
– Aditya Shah
Oct 10 '18 at 13:58
@AdityaShah i am using My custom API
– Banvari Lal
Oct 11 '18 at 5:29
inject the custom attribute intoxml, and add an observe for event ``sales_order_load_after
– Aditya Shah
Oct 11 '18 at 5:34
I have tried it, it didnt work for me
– Banvari Lal
Oct 11 '18 at 5:59
Please post your code here, so we can help.
– Aditya Shah
Oct 11 '18 at 6:03
you need to make custom api for the same
– Aditya Shah
Oct 10 '18 at 13:58
you need to make custom api for the same
– Aditya Shah
Oct 10 '18 at 13:58
@AdityaShah i am using My custom API
– Banvari Lal
Oct 11 '18 at 5:29
@AdityaShah i am using My custom API
– Banvari Lal
Oct 11 '18 at 5:29
inject the custom attribute intoxml, and add an observe for event ``sales_order_load_after
– Aditya Shah
Oct 11 '18 at 5:34
inject the custom attribute intoxml, and add an observe for event ``sales_order_load_after
– Aditya Shah
Oct 11 '18 at 5:34
I have tried it, it didnt work for me
– Banvari Lal
Oct 11 '18 at 5:59
I have tried it, it didnt work for me
– Banvari Lal
Oct 11 '18 at 5:59
Please post your code here, so we can help.
– Aditya Shah
Oct 11 '18 at 6:03
Please post your code here, so we can help.
– Aditya Shah
Oct 11 '18 at 6:03
|
show 3 more comments
1 Answer
1
active
oldest
votes
Go through below link, this is the correct way to add a custom attribute in Rest API
https://www.atwix.com/development/adding-custom-attribute-to-api-response-in-magento-2/
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%2f245973%2fmagento-2-order-rest-api-append-custom-attribute%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
Go through below link, this is the correct way to add a custom attribute in Rest API
https://www.atwix.com/development/adding-custom-attribute-to-api-response-in-magento-2/
add a comment |
Go through below link, this is the correct way to add a custom attribute in Rest API
https://www.atwix.com/development/adding-custom-attribute-to-api-response-in-magento-2/
add a comment |
Go through below link, this is the correct way to add a custom attribute in Rest API
https://www.atwix.com/development/adding-custom-attribute-to-api-response-in-magento-2/
Go through below link, this is the correct way to add a custom attribute in Rest API
https://www.atwix.com/development/adding-custom-attribute-to-api-response-in-magento-2/
answered 13 mins ago
nishunishu
213
213
add a comment |
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%2f245973%2fmagento-2-order-rest-api-append-custom-attribute%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
you need to make custom api for the same
– Aditya Shah
Oct 10 '18 at 13:58
@AdityaShah i am using My custom API
– Banvari Lal
Oct 11 '18 at 5:29
inject the custom attribute intoxml, and add an observe for event ``sales_order_load_after
– Aditya Shah
Oct 11 '18 at 5:34
I have tried it, it didnt work for me
– Banvari Lal
Oct 11 '18 at 5:59
Please post your code here, so we can help.
– Aditya Shah
Oct 11 '18 at 6:03