You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm investigating Magento2 at the moment and I think the new service oriented architecture is awesome. But I have a question..
I managed to add a customer through the REST layer (/rest/V1/customers) with this json:
{
"customer": {
"firstname": "James",
"lastname": "Page",
"email": "jp@example.com"
}
}
But we want to sync our data between a custom database and Magento. Is there a way to offer a bunch of customers? Like an array?
And the same for modified customers for example, is it possible to send an array (with ID's) which will cause an update for those customers?
Same question for products, probably much more important too..