Activities Web Service
Click here for a complete list of operations.
Update
Updates an Activity record.
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 /Activities.asmx HTTP/1.1
Host: iservices.nachc.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://ibridge.isgsolutions.com/Activities/Update"
<?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>
<Update xmlns="http://ibridge.isgsolutions.com/Activities/">
<securityPassword>string</securityPassword>
<id>string</id>
<sequenceNumber>string</sequenceNumber>
<activityType>string</activityType>
<transactionDate>string</transactionDate>
<effectiveDate>string</effectiveDate>
<productCode>string</productCode>
<otherCode>string</otherCode>
<description>string</description>
<sourceCode>string</sourceCode>
<quantity>string</quantity>
<amount>string</amount>
<category>string</category>
<units>string</units>
<thruDate>string</thruDate>
<memberType>string</memberType>
<actionCodes>string</actionCodes>
<payMethod>string</payMethod>
<ticklerDate>string</ticklerDate>
<note>string</note>
<note2>string</note2>
<batchNum>string</batchNum>
<coId>string</coId>
<uf1>string</uf1>
<uf2>string</uf2>
<uf3>string</uf3>
<uf4>string</uf4>
<uf5>string</uf5>
<uf6>string</uf6>
<uf7>string</uf7>
<originatingTransNum>string</originatingTransNum>
<orgCode>string</orgCode>
<campaignCode>string</campaignCode>
<otherId>string</otherId>
<solicitorId>string</solicitorId>
<taxableValue>string</taxableValue>
<attachSeqn>string</attachSeqn>
<attachTotal>string</attachTotal>
<recurringRequest>string</recurringRequest>
<statusCode>string</statusCode>
<nextInstallDate>string</nextInstallDate>
<gracePeriod>string</gracePeriod>
</Update>
</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>
<UpdateResponse xmlns="http://ibridge.isgsolutions.com/Activities/">
<UpdateResult>string</UpdateResult>
</UpdateResponse>
</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 /Activities.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>
<Update xmlns="http://ibridge.isgsolutions.com/Activities/">
<securityPassword>string</securityPassword>
<id>string</id>
<sequenceNumber>string</sequenceNumber>
<activityType>string</activityType>
<transactionDate>string</transactionDate>
<effectiveDate>string</effectiveDate>
<productCode>string</productCode>
<otherCode>string</otherCode>
<description>string</description>
<sourceCode>string</sourceCode>
<quantity>string</quantity>
<amount>string</amount>
<category>string</category>
<units>string</units>
<thruDate>string</thruDate>
<memberType>string</memberType>
<actionCodes>string</actionCodes>
<payMethod>string</payMethod>
<ticklerDate>string</ticklerDate>
<note>string</note>
<note2>string</note2>
<batchNum>string</batchNum>
<coId>string</coId>
<uf1>string</uf1>
<uf2>string</uf2>
<uf3>string</uf3>
<uf4>string</uf4>
<uf5>string</uf5>
<uf6>string</uf6>
<uf7>string</uf7>
<originatingTransNum>string</originatingTransNum>
<orgCode>string</orgCode>
<campaignCode>string</campaignCode>
<otherId>string</otherId>
<solicitorId>string</solicitorId>
<taxableValue>string</taxableValue>
<attachSeqn>string</attachSeqn>
<attachTotal>string</attachTotal>
<recurringRequest>string</recurringRequest>
<statusCode>string</statusCode>
<nextInstallDate>string</nextInstallDate>
<gracePeriod>string</gracePeriod>
</Update>
</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>
<UpdateResponse xmlns="http://ibridge.isgsolutions.com/Activities/">
<UpdateResult>string</UpdateResult>
</UpdateResponse>
</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 /Activities.asmx/Update?securityPassword=string&id=string&sequenceNumber=string&activityType=string&transactionDate=string&effectiveDate=string&productCode=string&otherCode=string&description=string&sourceCode=string&quantity=string&amount=string&category=string&units=string&thruDate=string&memberType=string&actionCodes=string&payMethod=string&ticklerDate=string¬e=string¬e2=string&batchNum=string&coId=string&uf1=string&uf2=string&uf3=string&uf4=string&uf5=string&uf6=string&uf7=string&originatingTransNum=string&orgCode=string&campaignCode=string&otherId=string&solicitorId=string&taxableValue=string&attachSeqn=string&attachTotal=string&recurringRequest=string&statusCode=string&nextInstallDate=string&gracePeriod=string HTTP/1.1 Host: iservices.nachc.com
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://ibridge.isgsolutions.com/Activities/">string</string>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /Activities.asmx/Update HTTP/1.1 Host: iservices.nachc.com Content-Type: application/x-www-form-urlencoded Content-Length: length securityPassword=string&id=string&sequenceNumber=string&activityType=string&transactionDate=string&effectiveDate=string&productCode=string&otherCode=string&description=string&sourceCode=string&quantity=string&amount=string&category=string&units=string&thruDate=string&memberType=string&actionCodes=string&payMethod=string&ticklerDate=string¬e=string¬e2=string&batchNum=string&coId=string&uf1=string&uf2=string&uf3=string&uf4=string&uf5=string&uf6=string&uf7=string&originatingTransNum=string&orgCode=string&campaignCode=string&otherId=string&solicitorId=string&taxableValue=string&attachSeqn=string&attachTotal=string&recurringRequest=string&statusCode=string&nextInstallDate=string&gracePeriod=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://ibridge.isgsolutions.com/Activities/">string</string>