Activities Web Service


Click here for a complete list of operations.

Create

Creates a new Activity record.

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
securityPassword:
id:
activityType:
transactionDate:
effectiveDate:
productCode:
otherCode:
description:
sourceCode:
quantity:
amount:
category:
units:
thruDate:
memberType:
actionCodes:
payMethod:
ticklerDate:
note:
note2:
batchNum:
coId:
uf1:
uf2:
uf3:
uf4:
uf5:
uf6:
uf7:
originatingTransNum:
orgCode:
campaignCode:
otherId:
solicitorId:
taxableValue:
attachSeqn:
attachTotal:
recurringRequest:
statusCode:
nextInstallDate:
gracePeriod:

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/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/Activities/">
      <securityPassword>string</securityPassword>
      <id>string</id>
      <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>
    </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/Activities/">
      <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 /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>
    <Create xmlns="http://ibridge.isgsolutions.com/Activities/">
      <securityPassword>string</securityPassword>
      <id>string</id>
      <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>
    </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/Activities/">
      <CreateResult>string</CreateResult>
    </CreateResponse>
  </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/Create?securityPassword=string&id=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&note=string&note2=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/Create HTTP/1.1
Host: iservices.nachc.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

securityPassword=string&id=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&note=string&note2=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>