How to add / change group prices with Magento API 1.9.1Look up order with API with Phone numberHow to change currency in magento soap apiUse API v2 to work with Customer Group PricesUsing an API Feed with MagentoMagento2: How to get shipping address for order in REST API?Magento V2 API ProblemMagento 2 API get product priceMagento 2 - “Property ”Slider“ does not have corresponding setter in class ”Magento\Eav\Api\Data\AttributeOptionInterface“.”Magento 2 Tier Price using APIMagento 2 How to add custom attribute to Quote Item Rest API
Did airlines fly their aircraft slower in response to oil prices in the 1970s?
Self-Preservation: How to DM NPCs that Love Living?
Pros and cons of writing a book review?
How did the Zip Chip and RocketChip accelerators work for the Apple II?
Could IPv6 make NAT / port numbers redundant?
Is it possible to kill all life on Earth?
Is having a hidden directory under /etc safe?
How does increase in volume change the speed of reaction in production of NO2?
Question about IV chord in minor key
What if you don't bring your credit card or debit for incidentals?
Cryptography and patents
How can I offer a test ride while selling a bike?
How should I push back against my job assigning "homework"?
Why would Lupin kill Pettigrew?
Opposite of "Squeaky wheel gets the grease"
California: "For quality assurance, this phone call is being recorded"
Bringing Food from Hometown for Out-of-Town Interview?
Beginner's snake game using PyGame
Humans meet a distant alien species. How do they standardize? - Units of Measure
Orientable with respect to complex cobordism?
When was the word "ambigu" first used with the sense of "meal with all items served at the same time"?
Is American Express widely accepted in France?
The term for the person/group a political party aligns themselves with to appear concerned about the general public
What is the difference between a game ban and a VAC ban in Steam?
How to add / change group prices with Magento API 1.9.1
Look up order with API with Phone numberHow to change currency in magento soap apiUse API v2 to work with Customer Group PricesUsing an API Feed with MagentoMagento2: How to get shipping address for order in REST API?Magento V2 API ProblemMagento 2 API get product priceMagento 2 - “Property ”Slider“ does not have corresponding setter in class ”Magento\Eav\Api\Data\AttributeOptionInterface“.”Magento 2 Tier Price using APIMagento 2 How to add custom attribute to Quote Item Rest API
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I can't find a way to add or change the group prices with the API.
Its only possible to change the tier prices.
Have anyone a idea, how to solve this?
api ce-1.9.1.0
add a comment |
I can't find a way to add or change the group prices with the API.
Its only possible to change the tier prices.
Have anyone a idea, how to solve this?
api ce-1.9.1.0
add a comment |
I can't find a way to add or change the group prices with the API.
Its only possible to change the tier prices.
Have anyone a idea, how to solve this?
api ce-1.9.1.0
I can't find a way to add or change the group prices with the API.
Its only possible to change the tier prices.
Have anyone a idea, how to solve this?
api ce-1.9.1.0
api ce-1.9.1.0
asked May 7 '15 at 2:33
LarsLars
957
957
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There's no existing APIs available for changing group prices, but you can create a custom API.
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
I tried it and created the module. But its not working. I can't read / update the product. I used:code
var_dump($client_m->call($session_m, 'product_group_price.info', 51199)); The Code won't work with "product_group", i testet "product_tier" and this worked.
– Lars
May 7 '15 at 22:16
add a comment |
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
in config.xml the </config>
is missing ang in wsdl.xml the </definitions>
is missing put the two ad the end of each file. it worked for me.
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%2f66964%2fhow-to-add-change-group-prices-with-magento-api-1-9-1%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There's no existing APIs available for changing group prices, but you can create a custom API.
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
I tried it and created the module. But its not working. I can't read / update the product. I used:code
var_dump($client_m->call($session_m, 'product_group_price.info', 51199)); The Code won't work with "product_group", i testet "product_tier" and this worked.
– Lars
May 7 '15 at 22:16
add a comment |
There's no existing APIs available for changing group prices, but you can create a custom API.
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
I tried it and created the module. But its not working. I can't read / update the product. I used:code
var_dump($client_m->call($session_m, 'product_group_price.info', 51199)); The Code won't work with "product_group", i testet "product_tier" and this worked.
– Lars
May 7 '15 at 22:16
add a comment |
There's no existing APIs available for changing group prices, but you can create a custom API.
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
There's no existing APIs available for changing group prices, but you can create a custom API.
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
edited May 23 '17 at 12:37
Community♦
1
1
answered May 7 '15 at 6:03
Rahul Kumar DasRahul Kumar Das
1,7081119
1,7081119
I tried it and created the module. But its not working. I can't read / update the product. I used:code
var_dump($client_m->call($session_m, 'product_group_price.info', 51199)); The Code won't work with "product_group", i testet "product_tier" and this worked.
– Lars
May 7 '15 at 22:16
add a comment |
I tried it and created the module. But its not working. I can't read / update the product. I used:code
var_dump($client_m->call($session_m, 'product_group_price.info', 51199)); The Code won't work with "product_group", i testet "product_tier" and this worked.
– Lars
May 7 '15 at 22:16
I tried it and created the module. But its not working. I can't read / update the product. I used:
code
var_dump($client_m->call($session_m, 'product_group_price.info', 51199)); The Code won't work with "product_group", i testet "product_tier" and this worked.– Lars
May 7 '15 at 22:16
I tried it and created the module. But its not working. I can't read / update the product. I used:
code
var_dump($client_m->call($session_m, 'product_group_price.info', 51199)); The Code won't work with "product_group", i testet "product_tier" and this worked.– Lars
May 7 '15 at 22:16
add a comment |
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
in config.xml the </config>
is missing ang in wsdl.xml the </definitions>
is missing put the two ad the end of each file. it worked for me.
add a comment |
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
in config.xml the </config>
is missing ang in wsdl.xml the </definitions>
is missing put the two ad the end of each file. it worked for me.
add a comment |
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
in config.xml the </config>
is missing ang in wsdl.xml the </definitions>
is missing put the two ad the end of each file. it worked for me.
https://stackoverflow.com/questions/17060295/how-to-update-group-price-via-soap-api
in config.xml the </config>
is missing ang in wsdl.xml the </definitions>
is missing put the two ad the end of each file. it worked for me.
edited May 23 '17 at 12:37
Community♦
1
1
answered Feb 6 '16 at 12:45
Akhil KurianAkhil Kurian
86212
86212
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%2f66964%2fhow-to-add-change-group-prices-with-magento-api-1-9-1%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