Account Web Service
Click here for a complete list of operations.
Create
Creates an Account.
Test
The test form is only available for requests from the local machine.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 /Account.asmx HTTP/1.1 Host: iservices.nachc.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://ibridge.isgsolutions.com/Account/Create" <?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> <Create xmlns="http://ibridge.isgsolutions.com/Account/"> <securityPassword>string</securityPassword> <account> <Id>string</Id> <Status>string</Status> <MemberType>string</MemberType> <JoinDate>string</JoinDate> <Prefix>string</Prefix> <FirstName>string</FirstName> <MiddleName>string</MiddleName> <LastName>string</LastName> <Suffix>string</Suffix> <Designation>string</Designation> <InformalName>string</InformalName> <MajorKey>string</MajorKey> <Title>string</Title> <ExcludeFromDirectory>string</ExcludeFromDirectory> <WebSite>string</WebSite> <Company>string</Company> <CompanyID>string</CompanyID> <OrgCode>string</OrgCode> <SourceCode>string</SourceCode> <ExcludeFromMail>string</ExcludeFromMail> <Category>string</Category> <Gender>string</Gender> <BirthDate>string</BirthDate> <WorkPhone>string</WorkPhone> <Fax>string</Fax> <TollFree>string</TollFree> <HomePhone>string</HomePhone> <Email>string</Email> <Chapter>string</Chapter> <FunctionalTitle>string</FunctionalTitle> <PaidThru>string</PaidThru> <WebLogin>string</WebLogin> <Password>string</Password> <SecurityGroup>string</SecurityGroup> <ExpirationDate>string</ExpirationDate> <StaffUser>string</StaffUser> <WebUser>string</WebUser> <Demographics> <Demographic> <Id>string</Id> <SequenceNumber>string</SequenceNumber> <WindowName>string</WindowName> <FieldName>string</FieldName> <FieldValue>string</FieldValue> <MultiInstance>string</MultiInstance> </Demographic> <Demographic> <Id>string</Id> <SequenceNumber>string</SequenceNumber> <WindowName>string</WindowName> <FieldName>string</FieldName> <FieldValue>string</FieldValue> <MultiInstance>string</MultiInstance> </Demographic> </Demographics> </account> </Create> </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> <CreateResponse xmlns="http://ibridge.isgsolutions.com/Account/"> <CreateResult>string</CreateResult> </CreateResponse> </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 /Account.asmx HTTP/1.1 Host: iservices.nachc.com 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> <Create xmlns="http://ibridge.isgsolutions.com/Account/"> <securityPassword>string</securityPassword> <account> <Id>string</Id> <Status>string</Status> <MemberType>string</MemberType> <JoinDate>string</JoinDate> <Prefix>string</Prefix> <FirstName>string</FirstName> <MiddleName>string</MiddleName> <LastName>string</LastName> <Suffix>string</Suffix> <Designation>string</Designation> <InformalName>string</InformalName> <MajorKey>string</MajorKey> <Title>string</Title> <ExcludeFromDirectory>string</ExcludeFromDirectory> <WebSite>string</WebSite> <Company>string</Company> <CompanyID>string</CompanyID> <OrgCode>string</OrgCode> <SourceCode>string</SourceCode> <ExcludeFromMail>string</ExcludeFromMail> <Category>string</Category> <Gender>string</Gender> <BirthDate>string</BirthDate> <WorkPhone>string</WorkPhone> <Fax>string</Fax> <TollFree>string</TollFree> <HomePhone>string</HomePhone> <Email>string</Email> <Chapter>string</Chapter> <FunctionalTitle>string</FunctionalTitle> <PaidThru>string</PaidThru> <WebLogin>string</WebLogin> <Password>string</Password> <SecurityGroup>string</SecurityGroup> <ExpirationDate>string</ExpirationDate> <StaffUser>string</StaffUser> <WebUser>string</WebUser> <Demographics> <Demographic> <Id>string</Id> <SequenceNumber>string</SequenceNumber> <WindowName>string</WindowName> <FieldName>string</FieldName> <FieldValue>string</FieldValue> <MultiInstance>string</MultiInstance> </Demographic> <Demographic> <Id>string</Id> <SequenceNumber>string</SequenceNumber> <WindowName>string</WindowName> <FieldName>string</FieldName> <FieldValue>string</FieldValue> <MultiInstance>string</MultiInstance> </Demographic> </Demographics> </account> </Create> </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> <CreateResponse xmlns="http://ibridge.isgsolutions.com/Account/"> <CreateResult>string</CreateResult> </CreateResponse> </soap12:Body> </soap12:Envelope>