PLD
Click here for a complete list of operations.
Registration
User Registration
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /PLD.asmx HTTP/1.1 Host: api.pld.live Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://tempuri.org/Registration" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Registration xmlns="http://tempuri.org/"> <UserId>string</UserId> <Password>string</Password> <EMailId>string</EMailId> <FirstName>string</FirstName> <LastName>string</LastName> <Gender>string</Gender> <Con_Code>string</Con_Code> <Reg_Code>string</Reg_Code> <City_Code>string</City_Code> <PinCode>string</PinCode> <CompanyName>string</CompanyName> <Address>string</Address> <MobileCCode>string</MobileCCode> <MobileNo>string</MobileNo> <TeleCCode>string</TeleCCode> <TeleACode>string</TeleACode> <TelephoneNo>string</TelephoneNo> <RegistrationDate>string</RegistrationDate> <IPLocation>string</IPLocation> <IsLocked>string</IsLocked> <IsActive>string</IsActive> <UserType>string</UserType> <ID_PROOF>string</ID_PROOF> <BUSINESS_PROOF>string</BUSINESS_PROOF> <WhatsApp>string</WhatsApp> <WeChat>string</WeChat> <QQID>string</QQID> <SkypeId>string</SkypeId> <BussinessFilename>string</BussinessFilename> <BussinessProof>string</BussinessProof> <BusinessType>string</BusinessType> <AppCode>string</AppCode> </Registration> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <RegistrationResponse xmlns="http://tempuri.org/" /> </soap:Body> </soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /PLD.asmx HTTP/1.1 Host: api.pld.live Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <Registration xmlns="http://tempuri.org/"> <UserId>string</UserId> <Password>string</Password> <EMailId>string</EMailId> <FirstName>string</FirstName> <LastName>string</LastName> <Gender>string</Gender> <Con_Code>string</Con_Code> <Reg_Code>string</Reg_Code> <City_Code>string</City_Code> <PinCode>string</PinCode> <CompanyName>string</CompanyName> <Address>string</Address> <MobileCCode>string</MobileCCode> <MobileNo>string</MobileNo> <TeleCCode>string</TeleCCode> <TeleACode>string</TeleACode> <TelephoneNo>string</TelephoneNo> <RegistrationDate>string</RegistrationDate> <IPLocation>string</IPLocation> <IsLocked>string</IsLocked> <IsActive>string</IsActive> <UserType>string</UserType> <ID_PROOF>string</ID_PROOF> <BUSINESS_PROOF>string</BUSINESS_PROOF> <WhatsApp>string</WhatsApp> <WeChat>string</WeChat> <QQID>string</QQID> <SkypeId>string</SkypeId> <BussinessFilename>string</BussinessFilename> <BussinessProof>string</BussinessProof> <BusinessType>string</BusinessType> <AppCode>string</AppCode> </Registration> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <RegistrationResponse xmlns="http://tempuri.org/" /> </soap12:Body> </soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /PLD.asmx/Registration?UserId=string&Password=string&EMailId=string&FirstName=string&LastName=string&Gender=string&Con_Code=string&Reg_Code=string&City_Code=string&PinCode=string&CompanyName=string&Address=string&MobileCCode=string&MobileNo=string&TeleCCode=string&TeleACode=string&TelephoneNo=string&RegistrationDate=string&IPLocation=string&IsLocked=string&IsActive=string&UserType=string&ID_PROOF=string&BUSINESS_PROOF=string&WhatsApp=string&WeChat=string&QQID=string&SkypeId=string&BussinessFilename=string&BussinessProof=string&BusinessType=string&AppCode=string HTTP/1.1 Host: api.pld.live
HTTP/1.1 200 OK
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /PLD.asmx/Registration HTTP/1.1 Host: api.pld.live Content-Type: application/x-www-form-urlencoded Content-Length: length UserId=string&Password=string&EMailId=string&FirstName=string&LastName=string&Gender=string&Con_Code=string&Reg_Code=string&City_Code=string&PinCode=string&CompanyName=string&Address=string&MobileCCode=string&MobileNo=string&TeleCCode=string&TeleACode=string&TelephoneNo=string&RegistrationDate=string&IPLocation=string&IsLocked=string&IsActive=string&UserType=string&ID_PROOF=string&BUSINESS_PROOF=string&WhatsApp=string&WeChat=string&QQID=string&SkypeId=string&BussinessFilename=string&BussinessProof=string&BusinessType=string&AppCode=string
HTTP/1.1 200 OK