Available customer API Methods in magento

Now i am describing How to get customer information from magento database through API.normally when we are talking about webservice then first we should know about resource name and method name of webservice with request and response parameters before call web service methods.

For handling of customer information in Magento’s database, the following methods are available:

Customer API

Resource name: customer
customer.list—Retrieve customers
customer.create—Create customer
customer.info—Retrieve customer data
customer.update—Update customer data
customer.delete—Delete customer

Customer Groups API

Resource name: customer_group
customer_group.list—Retrieve
customer’s groups

Customer Address API

Resource name: customer_address
customer_address.list—Retrieve
customer addresses
customer_address.create—Create
customer address
customer_address.info—Retrieve
customer address
customer_address.update—Update
customer address
customer_address.delete—Delete
customer address

How to call Magento web Api with help of PHP SOAP client

Call webservice in magnto is very easy its only 3 step process ,First we create the soap client with hekp of Soap api url then generate session with username and password,Finally we ar ble to call all webservice method From Soap Webservice Api. Continue reading …

How to create Web service in Magneto

Well now I am discussing how to create webservice method in magento.There is a lot of existing webservice in magneto Api ,its divide in different section like (Sales,catalog ect).
Here I am extending sales module and add new web method “getTicketPrice ()”on sales api.
Step 1:First we have register our module
Add the following file in Continue reading …