Magento API customer.create -> cart_product.moveToCustomerQuote The Next CEO of Stack...
Direct Implications Between USA and UK in Event of No-Deal Brexit
How can the PCs determine if an item is a phylactery?
Why did Batya get tzaraat?
Variance of Monte Carlo integration with importance sampling
Raspberry pi 3 B with Ubuntu 18.04 server arm64: what pi version
Find the majority element, which appears more than half the time
Why was Sir Cadogan fired?
Cannot restore registry to default in Windows 10?
It it possible to avoid kiwi.com's automatic online check-in and instead do it manually by yourself?
Car headlights in a world without electricity
Find a path from s to t using as few red nodes as possible
Planeswalker Ability and Death Timing
Compensation for working overtime on Saturdays
Ising model simulation
What happens if you break a law in another country outside of that country?
How seriously should I take size and weight limits of hand luggage?
Does int main() need a declaration on C++?
Creating a script with console commands
Avoiding the "not like other girls" trope?
How can a day be of 24 hours?
Why do we say “un seul M” and not “une seule M” even though M is a “consonne”?
Horror film about a man brought out of cryogenic suspension without a soul, around 1990
How do I secure a TV wall mount?
Masking layers by a vector polygon layer in QGIS
Magento API customer.create -> cart_product.moveToCustomerQuote
The Next CEO of Stack OverflowRest API - how to get custom attributesAndroid Magento Cart not active using APIProgrammatically assign customer to a quoteRole of is_active in sales_flat_quote?Magento 2: How to create new customer cart via rest API?Add to cart via Javascript in CE 2.1Customer session for logged in customer by token based authenticationMagento 2 : Custom quote column value not copied on quote mergeWishlist for guest in cart page not working shows “The requested cart item doesn't exist.'” in magento 2Magento2 REST API - Cannot create cart/quote for customer
I created a User using the Magento API.
I then created a shopping cart and want to move this cart to the created costumer, but this errors as Customer's quote does not exist.
Moving the cart to an existing customer works fine!
If I login to the API created customer once and move the cart with its CustomerId it works too.
So is there an solution to create the Customer's quote over the API?
cart customer api quote create
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I created a User using the Magento API.
I then created a shopping cart and want to move this cart to the created costumer, but this errors as Customer's quote does not exist.
Moving the cart to an existing customer works fine!
If I login to the API created customer once and move the cart with its CustomerId it works too.
So is there an solution to create the Customer's quote over the API?
cart customer api quote create
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I created a User using the Magento API.
I then created a shopping cart and want to move this cart to the created costumer, but this errors as Customer's quote does not exist.
Moving the cart to an existing customer works fine!
If I login to the API created customer once and move the cart with its CustomerId it works too.
So is there an solution to create the Customer's quote over the API?
cart customer api quote create
I created a User using the Magento API.
I then created a shopping cart and want to move this cart to the created costumer, but this errors as Customer's quote does not exist.
Moving the cart to an existing customer works fine!
If I login to the API created customer once and move the cart with its CustomerId it works too.
So is there an solution to create the Customer's quote over the API?
cart customer api quote create
cart customer api quote create
edited Feb 16 '18 at 11:04
John
662620
662620
asked Nov 14 '14 at 17:48
bbtimxbbtimx
11
11
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
After you create a customer shopping cart you get a quote id / shopping cart id .There is now way to move this quote ID to a new session id (obtained after creating a new customer profile in this case) but you can always create a new shopping cart again and copy all the items to the new shopping cart id.
EDIT UPDATE CORRECTION:
it seems there is a api to do move a customer cart
http://www.magentocommerce.com/api/soap/checkout/cartProduct/cart_product.moveToCustomerQuote.html
add a comment |
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%2f44105%2fmagento-api-customer-create-cart-product-movetocustomerquote%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
After you create a customer shopping cart you get a quote id / shopping cart id .There is now way to move this quote ID to a new session id (obtained after creating a new customer profile in this case) but you can always create a new shopping cart again and copy all the items to the new shopping cart id.
EDIT UPDATE CORRECTION:
it seems there is a api to do move a customer cart
http://www.magentocommerce.com/api/soap/checkout/cartProduct/cart_product.moveToCustomerQuote.html
add a comment |
After you create a customer shopping cart you get a quote id / shopping cart id .There is now way to move this quote ID to a new session id (obtained after creating a new customer profile in this case) but you can always create a new shopping cart again and copy all the items to the new shopping cart id.
EDIT UPDATE CORRECTION:
it seems there is a api to do move a customer cart
http://www.magentocommerce.com/api/soap/checkout/cartProduct/cart_product.moveToCustomerQuote.html
add a comment |
After you create a customer shopping cart you get a quote id / shopping cart id .There is now way to move this quote ID to a new session id (obtained after creating a new customer profile in this case) but you can always create a new shopping cart again and copy all the items to the new shopping cart id.
EDIT UPDATE CORRECTION:
it seems there is a api to do move a customer cart
http://www.magentocommerce.com/api/soap/checkout/cartProduct/cart_product.moveToCustomerQuote.html
After you create a customer shopping cart you get a quote id / shopping cart id .There is now way to move this quote ID to a new session id (obtained after creating a new customer profile in this case) but you can always create a new shopping cart again and copy all the items to the new shopping cart id.
EDIT UPDATE CORRECTION:
it seems there is a api to do move a customer cart
http://www.magentocommerce.com/api/soap/checkout/cartProduct/cart_product.moveToCustomerQuote.html
edited Dec 29 '14 at 8:41
answered Dec 29 '14 at 7:17
user44746user44746
11
11
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%2f44105%2fmagento-api-customer-create-cart-product-movetocustomerquote%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
