Multi Web service calls
Supported types |
SOAP |
To connect to Magento SOAP web services, load theWSDL into your SOAP client from either of these URLs:
As of v1.3, you may also use the following URL to access the Magento API v2, which has been added to improve compatibility with Java and .NET:
http://mymagentohost/api/?wsdl
http://mymagentohost/api/soap/?wsdl
mymagentohost
is the domain for your Magneto host.
As of v1.3, you may also use the following URL to access the Magento API v2, which has been added to improve compatibility with Java and .NET:
http://mymagentohost/api/v2_soap?wsdl=1
- $client = new SoapClient('http://mymagentohost/api/soap?wsdl');
- // If somestuff requires api authentification,
- // then get a session token
- $session = $client->login('apiUser', 'apiKey');
- $result = $client->call($session, 'somestuff.method');
- $result = $client->call($session, 'somestuff.method', 'arg1');
- $result = $client->call($session, 'somestuff.method', array('arg1', 'arg2', 'arg3'));
- $result = $client->multiCall($session, array(
- array('somestuff.method'),
- array('somestuff.method', 'arg1'),
- array('somestuff.method', array('arg1', 'arg2'))
- ));
- // If you don't need the session anymore
- $client->endSession($session);
XML-RPC |
To use XML-RPC, load the following URL into your XML-RPC client:
The following PHP example shows how to make XML-RPC calls:
The XML-RPC only supports the version 1 of the Magento API.
http://mymagentohost/api/xmlrpc/
mymagentohost
is the domain for your Magneto host.
The following PHP example shows how to make XML-RPC calls:
- $client = new Zend_XmlRpc_Client('http://youmagentohost/api/xmlrpc/');
- // If somestuff requires api authentification,
- // we should get session token
- $session = $client->call('login', array('apiUser', 'apiKey'));
- $client->call('call', array($session, 'somestuff.method', array('arg1', 'arg2', 'arg3')));
- $client->call('call', array($session, 'somestuff.method', 'arg1'));
- $client->call('call', array($session, 'somestuff.method'));
- $client->call('multiCall', array($session,
- array(
- array('somestuff.method', 'arg1'),
- array('somestuff.method', array('arg1', 'arg2')),
- array('somestuff.method')
- )
- ));
- // If you don't need the session anymore
- $client->call('endSession', array($session));
API Methods |
The following table contains the API methods that can be called from your SOAP or XML-RPC client on the Magento v1 API.
Note: For call and multiCall, if no session is specified, you can call only resources that are not protected by ACL.
Note: For multiCall, if the “break” option is specified, multiCall breaks on first error.
The Magento API v2 does not support the call() and multiCall() methods, and instead provides a separate method for each API resource.
Method | Description | Return Value |
---|---|---|
startSession() | Start the API session and return session ID. | string |
endSession(sessionId) | End the API session. | boolean |
login(apiUser, apiKey) | Start the API session, return the session ID and authorize the API user | string |
call(sessionId, resourcePath,array arguments) | Call the API resource that is allowed in current session. See Note below. | mixed |
multiCall(sessionId, array calls,array options) | Call the API resource’s methods that are allowed for current session. See Notes below. | array |
resources(sessionId) | Return a list of available API resources and methods allowed for current session. | array |
globalFaults(sessionId) | Return a list of fault messages and their codes that do not depend on any resource. | array |
resourceFaults(sessionId, resourceName) | Return a list of the specified resource fault messages, if this resource is allowed in current session. | array |
Note: For multiCall, if the “break” option is specified, multiCall breaks on first error.
The Magento API v2 does not support the call() and multiCall() methods, and instead provides a separate method for each API resource.
Global API Faults |
The following table contains fault codes that apply to all API calls.
Fault Code | Fault Message |
---|---|
0 | Unknown Error |
1 | Internal Error. Please see log for details. |
2 | Access denied. |
3 | Invalid api path. |
4 | Resource path is not callable. |
API Version v2 |
Since Magento 1.3, version v2 of the API has also been available. The main difference between v1 and v2 is that instead of using methods
For example, consider the following PHP code using v1.
With v2, the following code would be equivalent.
Note that the WSDL for v1 and v2 are different. Note that in v1, customizing the API did not involve changing the WSDL. In v2, changes to the WSDL are required.
You can configure the v2 API to be WS-I compliant in the system configuration menu. To do this, set Services > Magento Core API > WS-I Compliance to Yes.
Note that the WSDL for the v2 API is different when in WS-I compliant mode.
Using the WS-I compliant v2 API WSDL, it is easy to automatically generate client classes for Java, .NET, and other languages using standard libraries.
Source: http://www.magentocommerce.com/wiki/doc/webservices-api/api
call
and multiCall
, it has separate methods for each action.
For example, consider the following PHP code using v1.
- $params = array(array(
- 'status'=>array('eq'=>'pending'),
- 'customer_is_guest'=>array('eq'=>'1'))
- ));
- $result = $client->call($sessionId, 'sales_order.list', $params);
- $params = array('filter' => array(
- array('key' => 'status', 'value' => 'pending'),
- array('key' => 'customer_is_guest', 'value' => '1')
- ));
- $result = $client->salesOrderList($sessionId, $params);
You can configure the v2 API to be WS-I compliant in the system configuration menu. To do this, set Services > Magento Core API > WS-I Compliance to Yes.
Note that the WSDL for the v2 API is different when in WS-I compliant mode.
Using the WS-I compliant v2 API WSDL, it is easy to automatically generate client classes for Java, .NET, and other languages using standard libraries.
Source: http://www.magentocommerce.com/wiki/doc/webservices-api/api
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home