Getting Single Customer Data From Disputesuite Api Call

Disputesuite.com is a multi-user web software, which cover all of your customers data at one point. Many big brands using its service to manage their business data.

Disputesuite.com has official API service, which will help to use its data outside from it. You can Get or Post data from it via its API service.

Disputesuite.com api service

In this article we are going to explain how to get complete customer detail from Disputesuite account using customer id.

Disputesuite.com request soap url : https://www.securecrmsite.com/Modules/System/API.asmx?WSDL

Steps To Get Customer Data from Disputesuite.com via API

Step 1: To get customer information we need to pass post field parameters in an soap envelope form. Use disputesuite company id and api key in credential parameter and customer id inside <ApiParams> tag.

Step 2: Pass authorization header in curl request. Must pass the post field content length in header.

$url = ‘https://www.securecrmsite.com/Modules/System/API.asmx?WSDL’;

Step 3: Post the request API parameter via curl.

Now you get the particular customer detail through his id. Response will show in XML format. It can be parse the XML by getElementsByTagName using DOMDocument.

Recommended Posts For You

About Harish

I am professional web developer and blogger. Use this blog to share own api and other web development experience with you. I do accept paid work. Write to me at - [email protected]

View all posts by Harish

Leave a Comment

Your email address will not be published. Required fields are marked *