- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2015
01:58 AM
08-27-2015
01:58 AM
As per title, using API I can only list Customer Groups, how can they be created via the API??
Solved! Go to Solution.
Labels:
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2015
04:40 AM
09-03-2015
04:40 AM
Solved the problem by having an extension written for us.
5 REPLIES 5
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2015
07:18 AM
08-28-2015
07:18 AM
Re: Create customer groups via API
Hi @winman,
This can help you: http://www.magentocommerce.com/api/soap/customer/customer_group.html
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2015
07:39 AM
09-01-2015
07:39 AM
Re: Create customer groups via API
Hi thanks for the reply. Were using v2 API whcih is being consumed by Visual Studio. The Customer Group API in v1 doesnt appear to be in v2?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
06:23 AM
09-02-2015
06:23 AM
Re: Create customer groups via API
Have you checked the above refrence link. The code may be useful to you.
Request Example SOAP V2
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl'); // TODO : change url $sessionId = $proxy->login('apiUser', 'apiKey'); // TODO : change login and pwd if necessary $result = $proxy->customerGroupList($sessionId); var_dump($result);
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
07:01 AM
09-02-2015
07:01 AM
Re: Create customer groups via API
We can list Customer Groups with no issue, but we cant CREATE customer groups
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2015
04:40 AM