The #1 Fastest Growing Customer Service Software. Comm100 Marketing API Guide. Copyright 2011 Comm100. All Rights Reserved.

Size: px
Start display at page:

Download "The #1 Fastest Growing Customer Service Software. Comm100 Email Marketing API Guide. Copyright 2011 Comm100. All Rights Reserved."

Transcription

1 The #1 Fastest Growing Customer Service Software Comm100 Marketing API Guide Copyright 2011 Comm100. All Rights Reserved.

2 Comm100 Marketing API Guide 1 Introduction Comm100 Marketing application programming interfaces (APIs) allow your business/organization to expand upon the newsletter functionality provided by Comm100 Marketing software. In particular, APIs allow you to receive data from and send data to Comm100 Marketing, making integration with other solutions simple. You can manage your contact lists and s within the software you use everyday. To access and use Comm100 Marketing APIs, you need to: Sign up for a Comm100 site account and activate Comm100 Marketing; (Click here to sign up now) Possess some software development knowledge; Adhere to Comm100's Terms and Conditions and Comm100 Marketing request limits. No matter your programming language is ASP, JSP, PHP or any others, you can successfully call Comm100 Marketing APIs. You are allowed 500 requests in a 24 hour period. If you exceed the maximum requests, you will get an error notification and please contact Comm100 support team if you need any further help.

3 2 Methods name Contact GetAllContacts GetContactById GetContactBy Address AddContact UpdateContact DeleteContactById DeleteContactBy Address Mailing List GetAllMailingLists AddMailingList AddMailingList ClearMailingList GetAllMembersOfMailingList AddAContactToMailingList AddMultipleContactsToMailingList DeleteAContactFromMailingList DeleteMultipleContactsFromMailingList GetMemberByMailingListIdAndContactId GetMemberByMailingListIdAnd Address UnsubscribeFromMailingList UnsubscribeFromAllMailingList GetAll s Get ById Add Update ScheduleOrSend Delete Description Listing all contacts Obtaining a contact by the Contact Id Obtaining a contact by contact's address Adding a contact Updating a contact's information Deleting a contact by the Contact Id Deleting a contact by contact's address Listing all mailing lists Adding a mailing list Updating the information of a mailing list Deleting a mailing list Listing all members of a specific mailing list Adding a contact to a specific mailing list Adding multiple contacts to a specific mailing list Deleting a contact from a specific mailing list Deleting multiple contacts from a specific mailing list Obtaining a member's information by the mailing list Id and the contact Id Obtaining a member's information by the mailing list Id and the address Unsubscribe a contact from a specific mailing list Unsubscribe a contact from all mailing lists Listing all newsletters you created Obtaining a newsletter by Id Creating a newsletter Updating the information of a specific newsletter Scheduling the send time or sending out a newsletter immediately Deleting a specific newsletter

4 2.1 GetAllContacts You can get a list of the information of your contacts in your site account Syntax Public ContactsOutPut GetAllContacts() Input Output ContactsOutput Error Error Contact[] Contacts Parameters Contact: A business or an individual that you want to communicate with and track in Comm100 modules. Contact Int Id string Address string FirstName string LastName int Age EnumGender Gender EnumGender Male Female It's a Secret string Occupation string Organization string Title string Phone string Mobile string Fax string HomePage string Interests string Address1 string Address2 string City string StateOrProvince; string Country string ZipOrPostalCode string JoinTime string Source

5 Id: The unique Id of a contact. Address: Contact's address. FirstName: The first name of a contact. LastName: The last name of a contact. Age: Contact's age. Gender: Contact's gender. (EnumGender is an enumerated type provided for your direct use.) EnumGender Male Female It's asecret Occupation: Contact's Occupation. Organization: The organization which a contact works for. Title: Contact's title. Phone: Contact's phone number Mobile: Contact's mobile number Fax: Contact's fax number. HomePage: Contact's company home page Interests: Contact's Interests. Address1: Contact's Address Address2: Contact's Address City: The city in which Contact locates. StateOrProvince: The state or province in which Contact locates. Country: The country in which Contact locates. ZipOrPostalCode: The zip/postal code of Contact's location. JoinTime: The time when Contact is added in your Comm100 account. Source: From where Contact is added into your Comm100 account. Error: A struct consisting of error code and error message Error int ErrorCode //error code (No error is detected when it's 0.) string ErrorMessage //error message (detailed error information) Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1

6 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <GetAllContacts xmlns=" /> HTTP/ OK <GetAllContactsResponse xmlns=" <GetAllContactsResult> <Error> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Error> <Contacts> <Contact> <Id>int</Id> < Address>string</ Address> <FirstName>string</FirstName> <LastName>string</LastName> <Age>int</Age> <Gender>Male or Female or ItsaSecret</Gender> <Occupation>string</Occupation> <Organization>string</Organization> <Title>string</Title> <Phone>string</Phone> <Mobile>string</Mobile> <Fax>string</Fax> <HomePage>string</HomePage> <Interests>string</Interests> <Address1>string</Address1> <Address2>string</Address2> <City>string</City>

7 <StateOrProvince>string</StateOrProvince> <Country>string</Country> <ZipOrPostalCode>string</ZipOrPostalCode> <JoinTime>string</JoinTime> <Source>string</Source> </Contact> <Contact> <Id>int</Id> < Address>string</ Address> <FirstName>string</FirstName> <LastName>string</LastName> <Age>int</Age> <Gender>Male or Female or ItsaSecret</Gender> <Occupation>string</Occupation> <Organization>string</Organization> <Title>string</Title> <Phone>string</Phone> <Mobile>string</Mobile> <Fax>string</Fax> <HomePage>string</HomePage> <Interests>string</Interests> <Address1>string</Address1> <Address2>string</Address2> <City>string</City> <StateOrProvince>string</StateOrProvince> <Country>string</Country> <ZipOrPostalCode>string</ZipOrPostalCode> <JoinTime>string</JoinTime> <Source>string</Source> </Contact> </Contacts> </GetAllContactsResult> </GetAllContactsResponse> Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission. CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; ContactsOutput tmpo = tmp marketingapi.getallcontacts();

8 2.2 GetContactById You can obtain a contact's detailed information by the Contact Id Syntax Public ContactOutput GetContactById(int contactid) Input int contactid Output ContactOutput Error Error Contact Contact Parameters contactid: The unique number of a contact. Contact: A business or an individual that you want to communicate with or track in your Comm100 modules.

9 Contact Int Id string Address string FirstName string LastName int Age EnumGender Gender EnumGender Male Female It's asecret string Occupation string Organization string Title string Phone string Mobile string Fax string HomePage string Interests string Address1 string Address2 string City string StateOrProvince; string Country string ZipOrPostalCode string JoinTime string Source Id: The unique Id of a contact. Address: Contact's address. FirstName: The first name of a contact. LastName: The last name of a contact. Age: Contact's age. Gender: Contact's gender. (EnumGender is an enumerated type provided for your direct use.) EnumGender Male Female It's asecret

10 Occupation: Contact's Occupation. Organization: The organization which a contact works for. Title: Contact's title. Phone: Contact's phone number Mobile: Contact's mobile number Fax: Contact's fax number. HomePage: Contact's company home page Interests: Contact's Interests. Address1: Contact's Address Address2: Contact's Address City: The city in which Contact locates. StateOrProvince: The state or province in which Contact locates. Country: The country in which Contact locates. ZipOrPostalCode: The zip/postal code of Contact's location. JoinTime: The time when Contact is added in your Comm100 account. Source: From where Contact is added into your Comm100 account. Error: A struct consisting of error code and error message Error int ErrorCode //error code (No error is detected when it's 0.) string ErrorMessage //error message (detailed error information) Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header>

11 <GetContactById xmlns=" <contactid>int</contactid> </GetContactById> HTTP/ OK <GetContactByIdResponse xmlns=" <GetContactByIdResult> <Error> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Error> <Contact> <Id>int</Id> < Address>string</ Address> <FirstName>string</FirstName> <LastName>string</LastName> <Age>int</Age> <Gender>Male or Female or ItsaSecret</Gender> <Occupation>string</Occupation> <Organization>string</Organization> <Title>string</Title> <Phone>string</Phone> <Mobile>string</Mobile> <Fax>string</Fax> <HomePage>string</HomePage> <Interests>string</Interests> <Address1>string</Address1> <Address2>string</Address2> <City>string</City> <StateOrProvince>string</StateOrProvince> <Country>string</Country> <ZipOrPostalCode>string</ZipOrPostalCode> <JoinTime>string</JoinTime> <Source>string</Source> </Contact> </GetContactByIdResult> </GetContactByIdResponse>

12 2.2.6 Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; ContactOutput tmpo = tmp marketingapi. GetContactById (contactid as int); 2.3 GetContactBy Address You can obtain a contact's detailed information by Contact's address Syntax Public ContactOutput GetContactBy Address(string address) Input string address Output ContactOutput Error Error Contact Contact Parameters address: The address of a contact. Contact: A business or an individual that you want to communicate with or track in your Comm100 modules.

13 Contact Int Id string Address string FirstName string LastName int Age EnumGender Gender EnumGender Male Female It's asecret string Occupation string Organization string Title string Phone string Mobile string Fax string HomePage string Interests string Address1 string Address2 string City string StateOrProvince; string Country string ZipOrPostalCode string JoinTime string Source Id: The unique Id of a contact. Address: Contact's address. FirstName: The first name of a contact. LastName: The last name of a contact. Age: Contact's age. Gender: Contact's gender. (EnumGender is an enumerated type provided for your direct use.) EnumGender Male Female It's asecret

14 Occupation: Contact's Occupation. Organization: The organization which a contact works for. Title: Contact's title. Phone: Contact's phone number Mobile: Contact's mobile number Fax: Contact's fax number. HomePage: Contact's company home page Interests: Contact's Interests. Address1: Contact's Address Address2: Contact's Address City: The city in which Contact locates. StateOrProvince: The state or province in which Contact locates. Country: The country in which Contact locates. ZipOrPostalCode: The zip/postal code of Contact's location. JoinTime: The time when Contact is added in your Comm100 account. Source: From where Contact is added into your Comm100 account. Error: A struct consisting of error code and error message Error int ErrorCode //error code (No error is detected when it's 0.) string ErrorMessage //error message (detailed error information) Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header>

15 <GetContactBy Address xmlns=" < address>string</ address> </GetContactBy Address> HTTP/ OK <GetContactBy AddressResponse xmlns=" <GetContactBy AddressResult> <Error> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Error> <Contact> <Id>int</Id> < Address>string</ Address> <FirstName>string</FirstName> <LastName>string</LastName> <Age>int</Age> <Gender>Male or Female or ItsaSecret</Gender> <Occupation>string</Occupation> <Organization>string</Organization> <Title>string</Title> <Phone>string</Phone> <Mobile>string</Mobile> <Fax>string</Fax> <HomePage>string</HomePage> <Interests>string</Interests> <Address1>string</Address1> <Address2>string</Address2> <City>string</City> <StateOrProvince>string</StateOrProvince> <Country>string</Country> <ZipOrPostalCode>string</ZipOrPostalCode> <JoinTime>string</JoinTime> <Source>string</Source> </Contact> </GetContactBy AddressResult> </GetContactBy AddressResponse>

16 2.3.6 Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; ContactOutput tmpo = tmp marketingapi. GetContactBy Address ( address as string); 2.4 AddContact You can create a new contact in your Comm100 account Syntax Public IntValue AddContact(string , string firstname, string lastname, int age, EnumGender gender, string occupation, string organization, string title, string phone, string mobile, string fax, string homepage, string interests, string address1, string address2,string city, string stateorprovince, string country, string ziporpostalcode) Input string , string firstname, string lastname, int age, EnumGender gender, string occupation, string organization, string title, string phone, string mobile, string fax, string homepage, string interests, string address1, string address2,string city, string stateorprovince, string country, string ziporpostalcode Output IntValue Error Error int Value

17 2.4.4 Parameters The address of a contact FirstName: The first name of a contact LastName: The last name of a contact Age: The age of a contact Gender: Contact's gender. (EnumGender is an enumerated type provided for your direct use.) EnumGender Male Female It's asecret Occupation: Contact's Occupation. Organization: The organization which a contact works for. Title: Contact's title. Phone: Contact's phone number Mobile: Contact's mobile number Fax: Contact's fax number. HomePage: Contact's company home page Interests: Contact's Interests. Address1: Contact's Address Address2: Contact's Address City: The city in which Contact locates. StateOrProvince: The state or province in which Contact locates. Country: The country in which Contact locates. ZipOrPostalCode: The zip/postal code of Contact's location. JoinTime: The time when Contact is added in your Comm100 account. Source: From where Contact is added into your Comm100 account. Value: The unique Id of a contact Error: A struct consisting of error code and error message Error int ErrorCode //error code (No error is detected when it's 0.) string ErrorMessage //error message (detailed error information)

18 2.4.5 Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <AddContact xmlns=" < >string</ > <firstname>string</firstname> <lastname>string</lastname> <age>int</age> <gender>male or Female or ItsaSecret</gender> <occupation>string</occupation> <organization>string</organization> <title>string</title> <phone>string</phone> <mobile>string</mobile> <fax>string</fax> <homepage>string</homepage> <interests>string</interests> <address1>string</address1> <address2>string</address2> <city>string</city> <stateorprovince>string</stateorprovince> <country>string</country> <ziporpostalcode>string</ziporpostalcode> </AddContact> HTTP/ OK

19 <AddContactResponse xmlns=" <AddContactResult> <Error> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Error> <Value>int</Value> </AddContactResult> </AddContactResponse> Examples C# //Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; IntValue tmpi = tmp marketingapi. AddContact ( as string, firstname as string, lastname as string, age as int, gender as EnumGender, occupation as string, organization as string, title as string, phone as string, mobile as string, fax as string, homepage as string, interests as string, address1 as string, address2 as string, city as string, stateorprovince as string, country as string, ziporpostalcode as string); 2.5 UpdateContact You can modify and update a contact's information Syntax public Error UpdateContact(int contactid, string , string displayname, string firstname, string lastname, int age, EnumGender gender, string occupation, string organization, string title, string phone, string mobile, string fax, string homepage, string interests, string address1, string address2, string city, string stateorprovince, string country, string ziporpostalcode)

20 2.5.2 Input int contactid, string , string displayname, string firstname, string lastname, int age, EnumGender gender, string occupation, string organization, string title, string phone, string mobile, string fax, string homepage, string interests, string address1, string address2, string city, string stateorprovince, string country, string ziporpostalcode Output Error int ErrorCode string ErrorMessage Parameters contactid: The unique Id of a contact. Contact's address. firstname: The first name of a contact. lastname: The last name of a contact. age: Contact's age. Gender: Contact's gender. (EnumGender is an enumerated type provided for your direct use.) EnumGender Male Female It's asecret occupation: Contact's Occupation. organization: The organization which a contact works for. title: Contact's title. phone: Contact's phone number mobile: Contact's mobile number fax: Contact's fax number. homepage: Contact's company home page interests: Contact's Interests. address1: Contact's Address address2: Contact's Address city: The city in which Contact locates. stateorprovince: The state or province in which Contact locates. country: The country in which Contact locates. ziporpostalcode: The zip/postal code of Contact's location.

21 jointime: The time when Contact is added in your Comm100 account. source: From where Contact is added into your Comm100 account. ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <UpdateContact xmlns=" <contactid>int</contactid> < >string</ > <displayname>string</displayname> <firstname>string</firstname> <lastname>string</lastname> <age>int</age> <gender>string</gender> <occupation>string</occupation> <organization>string</organization> <title>string</title> <phone>string</phone> <mobile>string</mobile> <fax>string</fax> <homepage>string</homepage> <interests>string</interests> <address1>string</address1> <address2>string</address2> <city>string</city> <stateorprovince>string</stateorprovince> <country>string</country> <ziporpostalcode>string</ziporpostalcode>

22 </UpdateContact> HTTP/ OK <UpdateContactResponse xmlns=" <UpdateContactResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </UpdateContactResult> </UpdateContactResponse> Examples C# //Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; IntValue tmpi = tmp marketingapi. AddContact (contactid as int, as string, displayname as string, firstname as string, lastname as string, age as int, gender as EnumGender, occupation as string, organization as string, title as string, phone as string, mobile as string, fax as string, homepage as string, interests as string, address1 as string, address2 as string, city as string, stateorprovince as string, country as string, ziporpostalcode as string); 2.6 DeleteContactById You can remove a contact by the Contact Id.

23 Removing a contact doesn't mean that this contact unsubscribed from receiving s. It means the contact simply does not exist in your contact list. And you can add him/her back to your Comm100 account. However, this API should not be used if the contact has opted out of receiving all s. Instead, you must unsubscribe this contact Syntax Public Error DeleteContactById(int contactid) Input int contactid Output Error int ErrorCode string ErrorMessage Parameters contactid: The unique Id of a contact ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader>

24 </soap:header> <DeleteContactById xmlns=" <contactid>int</contactid> </DeleteContactById> HTTP/ OK <DeleteContactByIdResponse xmlns=" <DeleteContactByIdResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </DeleteContactByIdResult> </DeleteContactByIdResponse> Examples C# //Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; Error tmpe = tmp marketingapi. DeleteContactById(contactId as int);

25 2.7 DeleteContactBy Address You can remove a contact by the Contact Id. Removing a contact doesn't mean that this contact unsubscribed from receiving s. It means the contact simply does not exist in your contact list. And you can add him/her back to your Comm100 account. However, this API should not be used if the contact has opted out of receiving all s. Instead, you must unsubscribe this contact Syntax Public Error DeleteContactBy Address(string address) Input string address Output Error int ErrorCode string ErrorMessage Parameters address: The address of a contact ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: "

26 <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <DeleteContactBy Address xmlns=" < address>string</ address> </DeleteContactBy Address> HTTP/ OK <DeleteContactBy AddressResponse xmlns=" <DeleteContactBy AddressResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </DeleteContactBy AddressResult> </DeleteContactBy AddressResponse> Examples C# //Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; Error tmpe = tmp marketingapi. DeleteContactBy Address ( address as string);

27 2.8 GetAllMailingLists You can get a list of the information of your mailing lists in your site account Syntax Public MailingListsOutput GetAllMailingLists() Input Output MailingListsOutput Error Error MailingList[] mailinglists Parameters MailingList: A collection of names and addresses which you use to send newsletter to multiple recipients. MailingList int Id string Name string Description Id: The unique number of a mailing list. Name: The name of a mailing list. Description: The description of a mailing list. Error: A struct consisting of error code and error message Error int ErrorCode //error code (No error is detected when it's 0.) string ErrorMessage //error message (detailed error information)

28 2.8.5 Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <GetAllMailingLists xmlns=" /> HTTP/ OK <GetAllMailingListsResponse xmlns=" <GetAllMailingListsResult> <Error> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Error> <MailingLists> <MailingList> <Id>int</Id> <Name>string</Name> <Description>string</Description> </MailingList> <MailingList> <Id>int</Id> <Name>string</Name> <Description>string</Description> </MailingList> </MailingLists>

29 </GetAllMailingListsResult> </GetAllMailingListsResponse> Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; MailingListOutput tmpo = tmp marketingapi. GetAllMailingLists (); 2.9 AddMailingList You can create a new contact in your Comm100 account Syntax Public IntValue AddMailingList(string name, string desctiption) Input string name, string desctiption Output IntValue Error Error int Value

30 2.9.4 Parameters Name: The name of a mailing list. Description: The description of a mailing list. Value: The unique Id of a contact. Error: A struct consisting of error code and error message. Error int ErrorCode //error code (No error is detected when it's 0.) string ErrorMessage //error message (detailed error information) Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <AddMailingList xmlns=" <name>string</name> <description>string</description> </AddMailingList> HTTP/ OK

31 <AddMailingListResponse xmlns=" <AddMailingListResult> <Error> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Error> <Value>int</Value> </AddMailingListResult> </AddMailingListResponse> Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; IntValue tmpi = tmp marketingapi.addmailinglist(name as string, description as string); 2.10 Updat ingList You can update the information of a mailing list Syntax Public Error Updat ingList(int mailinglistid, string name, string description) Input int mailinglistid, string name, string description Output

32 Error int ErrorCode string ErrorMessage Parameters MailingListId: The unique number of a mailing list. Name: The name of mailing list. Description: The description of a mailing list. ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <Updat ingList xmlns=" <mailinglistid>int</mailinglistid> <name>string</name> <description>string</description> </Updat ingList>

33 HTTP/ OK <Updat ingListResponse xmlns=" <Updat ingListResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Updat ingListResult> </Updat ingListResponse> Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; Error tmpe = tmp marketingapi.updat inglist (Id as int, name as string, description as string); 2.11 ClearMailingList You can clear all the information of a mailing list. However, the members belongs to this mailing list won't be removed from the contact list Syntax Public Error ClearMailingList(int mailinglistid)

34 Input int mailinglistid Output Error int ErrorCode string ErrorMessage Parameters MailingListId: The unique number of a mailing list. ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <ClearMailingList xmlns=" <mailinglistid>int</mailinglistid> </ClearMailingList> HTTP/ OK

35 <ClearMailingListResponse xmlns=" <ClearMailingListResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </ClearMailingListResult> </ClearMailingListResponse> Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; Error tmpe = tmp marketingapi.clearmailinglist (mailinglistid as int); 2.12 GetAllMembersOfMailingList You can have a list of members belongs to a specific mailing list Syntax Public MembersOutput GetAllMembersOfMailingList(int mailinglistid) Input int mailinglistid

36 Output MembersOutput Error Error Memeber[] Members Parameters Member: A subscribed contact/user belongs to a certain mailing list. Member int MailingListId int UserOrContactId string Address string FirstName string LastName int Age EnumGender Gender EnumGender Male Female It's a Secret string Occupation string Organization string Title string Phone string Mobile string Fax string HomePage string Interests string Address1 string Address2 string City string StateOrProvince string Country string ZipOrPostalCode string JoinTime string Source string Status

37 MailingListId: The unique Id of a mailing list. UserorContactId: The unique Id of a user or a contact. Address: The address of a subscribed member. FirstName: The first name of a subscribed member. LastName: The last name of a subscribed member. Age: The age of a subscribed member. Gender: The gender of a subscribed member. Occupation: The occupation of a subscribed member. Organization: The organization which a subscribed member works for. Title: The title of a subscribed member. Phone: The phone number of a subscribed member. Mobile: The mobile number of a subscribed member. Fax: The fax number subscribed member. HomePage: Member's company home page of Interests: Member's Interests. Address1: Member 's Address Address2: Member's Address City: The city in which a subscribed member locates. StateOrProvince: The state or province in which a subscribed member locates. Country: The country in which a subscribed member locates. ZipOrPostalCode: The zip/postal code of a subscribed member 's location. JoinTime: The time when a subscribed member is added in your Comm100 account. Source: From where a subscribed member is added into your Comm100 account. Status: The status of a member in a specific mailing list. Error: A struct consisting of error code and error message Error int ErrorCode //error code (No error is detected when it's 0.) string ErrorMessage //error message (detailed error information) Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost

38 SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <GetAllMembersOfMailingList xmlns=" <mailinglistid>int</mailinglistid> </GetAllMembersOfMailingList> HTTP/ OK <GetAllMembersOfMailingListResponse xmlns=" <GetAllMembersOfMailingListResult> <Error> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Error> <Members> <Member> <MailingListId>int</MailingListId> <UserOrContactId>int</UserOrContactId> < Address>string</ Address> <FirstName>string</FirstName> <LastName>string</LastName> <Age>int</Age> <Gender> Male or Female or ItsaSecret</Gender> <Occupation>string</Occupation> <Organization>string</Organization> <Title>string</Title> <Phone>string</Phone> <Mobile>string</Mobile> <Fax>string</Fax> <HomePage>string</HomePage> <Interests>string</Interests> <Address1>string</Address1> <Address2>string</Address2> <City>string</City>

39 <StateOrProvince>string</StateOrProvince> <Country>string</Country> <ZipOrPostalCode>string</ZipOrPostalCode> <JoinTime>string</JoinTime> <Source>string</Source> <Status>string</Status> </Member> <Member> <MailingListId>int</MailingListId> <UserOrContactId>int</UserOrContactId> < Address>string</ Address> <FirstName>string</FirstName> <LastName>string</LastName> <Age>int</Age> <Gender> Male or Female or ItsaSecret</Gender> <Occupation>string</Occupation> <Organization>string</Organization> <Title>string</Title> <Phone>string</Phone> <Mobile>string</Mobile> <Fax>string</Fax> <HomePage>string</HomePage> <Interests>string</Interests> <Address1>string</Address1> <Address2>string</Address2> <City>string</City> <StateOrProvince>string</StateOrProvince> <Country>string</Country> <ZipOrPostalCode>string</ZipOrPostalCode> <JoinTime>string</JoinTime> <Source>string</Source> <Status>string</Status> </Member> </Members> </GetAllMembersOfMailingListResult> </GetAllMembersOfMailingListResponse> Examples C#

40 // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; MembersOutput tmpo = tmp marketingapi.getallmembersofmailinglist(mailinglistid as int); 2.13 AddAContactToMailingList You can add a contact to a specific mailing list Syntax Public Error AddAContactToMailingList(int mailinglistid, int contactid) Input int mailinglistid, int contactid Output Error int ErrorCode string ErrorMessage Parameters MailingListId: The unique Id of a mailing list. ContactId: The unique Id of a contact. ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information

41 Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <AddAContactToMailingList xmlns=" <mailinglistid>int</mailinglistid> <contactid>int</contactid> </AddAContactToMailingList> HTTP/ OK <AddAContactToMailingListResponse xmlns=" <AddAContactToMailingListResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </AddAContactToMailingListResult> </AddAContactToMailingListResponse> Examples C#

42 // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; Error tmpe = tmp marketingapi.addacontacttomailinglist (mailinglistid as int, contactid as int); 2.14 AddMultipleContactsToMailingList You can add multiple contacts to a specific mailing list Syntax Public Error AddMultipleContactsToMailingList(int mailinglistid, int[] contactids) Input int mailinglistid, int[] contactids Output Error int ErrorCode string ErrorMessage Parameters MailingListId: The unique Id of a mailing list. ContactIds: The Id numbers of certain contacts. ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information

43 Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <AddMultipleContactsToMailingList xmlns=" <mailinglistid>int</mailinglistid> <contactids> <int>int</int> <int>int</int> </contactids> </AddMultipleContactsToMailingList> HTTP/ OK <AddMultipleContactsToMailingListResponse xmlns=" <AddMultipleContactsToMailingListResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </AddMultipleContactsToMailingListResult> </AddMultipleContactsToMailingListResponse>

44 Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; Error tmpe = tmp marketingapi.addmultiplecontactstomailinglist(mailinglistid as int, contactids as int array); 2.15 DeleteAContactFromMailingList You can remove a contact from a mailing list, but he/she still belongs to your contacts list Syntax Public Error DeleteAContactFromMailingList(int mailinglistid, int contactid) Input int mailinglistid, int contactid Output Error int ErrorCode string ErrorMessage Parameters MailingListId: The unique Id of a mailing list. ContactId: The unique Id of a contact.

45 ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <DeleteAContactFromMailingList xmlns=" <mailinglistid>int</mailinglistid> <contactid>int</contactid> </DeleteAContactFromMailingList> HTTP/ OK <DeleteAContactFromMailingListResponse xmlns=" <DeleteAContactFromMailingListResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </DeleteAContactFromMailingListResult> </DeleteAContactFromMailingListResponse>

46 Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; Error tmpe = tmp marketingapi.deleteacontactfrommailinglist (mailinglistid as int, contactid as int); 2.16 DeleteMultipleContactsFromMailingList You can remove multiple contact from a mailing list, but the members still belong to your contacts list Syntax Public Error DeleteMultipleContactsFromMailingList(int mailinglistid, int[] contactids) Input int mailinglistid, int[] contactids Output Error int ErrorCode string ErrorMessage Parameters MailingListId: The unique Id of a mailing list. ContactIds: The Id numbers of certain contacts.

47 ErrorCode: Error Code ; No error is detected when it's 0. ErrorMessage: Detailed error information Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns=" <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <DeleteMultipleContactsFromMailingList xmlns=" <mailinglistid>int</mailinglistid> <contactids> <int>int</int> <int>int</int> </contactids> </DeleteMultipleContactsFromMailingList> HTTP/ OK <DeleteMultipleContactsFromMailingListResponse xmlns=" <DeleteMultipleContactsFromMailingListResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </DeleteMultipleContactsFromMailingListResult> </DeleteMultipleContactsFromMailingListResponse>

48 Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; Error tmpe = tmp marketingapi.deletemultiplecontactsfrommailinglist(mailinglistid as int, contactids as int array); 2.17 GetMemberByMailingListIdAndContactId You can obtain a member's detailed information by mailing list and the Contact Id Syntax Public MemberOutput GetMemberByMailingListIdAndContactId(int mailinglistid, int userorcontactid) Input int mailinglistid, int userorcontactid Output MemberOutput Error Error Member Member

49 Parameters Member: A subscribed contact/user belongs to a certain mailing list. Member int MailingListId int UserOrContactId string Address string FirstName string LastName int Age EnumGender Gender EnumGender Male Female It's a Secret string Occupation string Organization string Title string Phone string Mobile string Fax string HomePage string Interests string Address1 string Address2 string City string StateOrProvince string Country string ZipOrPostalCode string JoinTime string Source string Status MailingListId: The unique Id of a mailing list. UserorContactId: The unique Id of a user or a contact. Address: The address of a subscribed member. FirstName: The first name of a subscribed member. LastName: The last name of a subscribed member. Age: The age of a subscribed member.

50 Gender: Contact's gender. (EnumGender is an enumerated type provided for your direct use.) Occupation: The occupation of a subscribed member. Organization: The organization which a subscribed member works for. Title: The title of a subscribed member. Phone: The phone number of a subscribed member. Mobile: The mobile number of a subscribed member. Fax: The fax number subscribed member. HomePage: Member's company home page of Interests: Member's Interests. Address1: Member 's Address Address2: Member's Address City: The city in which a subscribed member locates. StateOrProvince: The state or province in which a subscribed member locates. Country: The country in which a subscribed member locates. ZipOrPostalCode: The zip/postal code of a subscribed member 's location. JoinTime: The time when a subscribed member is added in your Comm100 account. Source: From where a subscribed member is added into your Comm100 account. Status: The status of a member in a specific mailing list. Error: A struct consisting of error code and error message Error int ErrorCode //error code (No error is detected when it's 0.) string ErrorMessage //error message (detailed error information) Sample SOAP 1.1 Request & Response POST /NewsletterAPI/ marketingapi.asmx HTTP/1.1 Host: localhost SOAPAction: " <soap:header> <CredentialSoapHeader xmlns="

51 <SiteId>int</SiteId> < >string</ > <Password>string</Password> </CredentialSoapHeader> </soap:header> <GetMemberByMailingListIdAndContactId xmlns=" <mailinglistid>int</mailinglistid> <userorcontactid>int</userorcontactid> </GetMemberByMailingListIdAndContactId> HTTP/ OK <GetMemberByMailingListIdAndContactIdResponse xmlns=" <GetMemberByMailingListIdAndContactIdResult> <Error> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> </Error> <Member> <MailingListId>int</MailingListId> <UserOrContactId>int</UserOrContactId> < Address>string</ Address> <FirstName>string</FirstName> <LastName>string</LastName> <Age>int</Age> <Gender>Male or Female or ItsaSecret</Gender> <Occupation>string</Occupation> <Organization>string</Organization> <Title>string</Title> <Phone>string</Phone> <Mobile>string</Mobile> <Fax>string</Fax> <HomePage>string</HomePage> <Interests>string</Interests> <Address1>string</Address1> <Address2>string</Address2> <City>string</City> <StateOrProvince>string</StateOrProvince> <Country>string</Country> <ZipOrPostalCode>string</ZipOrPostalCode> <JoinTime>string</JoinTime> <Source>string</Source> <Status>string</Status> </Member>

52 </GetMemberByMailingListIdAndContactIdResult> </GetMemberByMailingListIdAndContactIdResponse> Examples C# // Authenticity Verification: please provide an Comm100 site account with administrative permission CredentialSoapHeader soapheader = new CredentialSoapHeader(); header.siteid = SiteId as int; header. = Operator as string; header.password = Password as string; MarketingAPI tmp marketingapi = new MarketingAPI(); tmp marketingapi.credentialsoapheadervalue = soapheader; MemberOutput tmpo = tmp marketingapi.getmemberbymailinglistidandcontactid (mailinglistid as int, userorcontactid as int); 2.18 GetMemberByMailingListIdAnd Address You can obtain multiple members' detailed information by mailing list and the Contact Id Syntax Public MembersOutput GetMembersByMailingListIdAnd Address(int mailinglistid, string address) Input int mailinglistid, string address Output MemberOutput Error Error Member Member

Life Insurance. Web Service Integration Guide

Life Insurance. Web Service Integration Guide Life Insurance Web Service Integration Guide Version 1.0.0 Date 17/12/2014 Service Description Leads can be sent into LeadStream using the SOAP web service. This enables you to send Life Insurance leads

More information

Import Clients. Importing Clients Into STX

Import Clients. Importing Clients Into STX Import Clients Importing Clients Into STX Your Client List If you have a list of clients that you need to load into STX, you can import any comma-separated file (CSV) that contains suitable information.

More information

SSL API Documentation. Version 1.2.1

SSL API Documentation. Version 1.2.1 SSL API Documentation Version 1.2.1 Table of Contents Document Information! 3 API Connection Information! 4 API Error Handling! 5 API Error Messages! 6 Account Balance Query! 7 Query Certificate Status!

More information

1. Starting the management of a subscribers list with emill

1. Starting the management of a subscribers list with emill The sending of newsletters is the basis of an efficient email marketing communication for small to large companies. All emill editions include the necessary tools to automate the management of a subscribers

More information

MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012

MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012 MXSAVE XMLRPC Web Service Guide Last Revision: 6/14/2012 Table of Contents Introduction! 4 Web Service Minimum Requirements! 4 Developer Support! 5 Submitting Transactions! 6 Clients! 7 Adding Clients!

More information

GFI FaxMaker Online Inbound Web Services V.1.0

GFI FaxMaker Online Inbound Web Services V.1.0 GFI FaxMaker Online Inbound Web Services V.1.0 Publication Notice The contents of this publication the specifications of this application are subject to change without notice. GFI Software reserves the

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

VerticalResponse Application Overview

VerticalResponse Application Overview VerticalResponse Application Overview I. Introduction The VerticalResponse API opens up a world of possibilities to organizations that want to extend the functionality of VerticalResponse and integrate

More information

This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function.

This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function. This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function. Page 1 of 14 This module covers these topics: - Enabling audit for a Maximo database table -

More information

e-subscription ecommerce Guide e-subscription

e-subscription ecommerce Guide e-subscription e-subscription e-subscription is a module that let customer subscribe and unsubscribe for email notification on booking confirmation, BL ready for proof reading and printing, event status update, vessel

More information

SPARROW Gateway. Developer Data Vault Payment Type API. Version 2.7 (6293)

SPARROW Gateway. Developer Data Vault Payment Type API. Version 2.7 (6293) SPARROW Gateway Developer Data Vault Payment Type API Version 2.7 (6293) Released July 2015 Table of Contents SPARROW Gateway... 1 Developer Data Vault Payment Type API... 1 Overview... 3 Architecture...

More information

The VerticalResponse API Guide

The VerticalResponse API Guide The VerticalResponse API Guide Revision 4, 9/2012 Copyright 2012 VerticalResponse, Inc. Table of Contents 1. Introduction About This Guide Enterprise API vs. Partner API Email Campaign Creation Workflow

More information

How to Process Opt-Out Reqeusts in GroupMail (Subscriber Add-On)

How to Process Opt-Out Reqeusts in GroupMail (Subscriber Add-On) How to Process Opt-Out Reqeusts in GroupMail (Subscriber Add-On) Tuesday, January 23, 2007, 21:23 Your reputation and success depends on a well maintained list. List maintenance can be a very time consuming

More information

HowTo. Planning table online

HowTo. Planning table online HowTo Project: Description: Planning table online Installation Version: 1.0 Date: 04.09.2008 Short description: With this document you will get information how to install the online planning table on your

More information

WordPress Pages. AmeriFlux Create Account r7. WordPress to Wile account connections. Notes

WordPress Pages. AmeriFlux Create Account r7. WordPress to Wile account connections. Notes WordPress Pages WordPress to account connections Notes 1 3 1. Create New Account link: Takes user to page: Create New Account and Subscribe to a List 2. Lost Password? link: Takes user to page: Lost Password

More information

Cvent Web Services API. Version V200611 June 2008

Cvent Web Services API. Version V200611 June 2008 Cvent Web Services API Version V200611 Cvent, Inc. 8180 Greensboro Dr, Suite 450 McLean, VA 22102 866.318.4357 www.cvent.com customercare@cvent.com 1.0 Framework Overview... 1 1.1 Overview... 1 1.2 Compatible

More information

Search invoice API. Version 5.1

Search invoice API. Version 5.1 Search invoice API Version 5.1 : Date: 2010-12-06 Sida 2 av 20 Revision history Version Date Comments 5.1 2010-12-06 Added information regarding e-service authentication including link to application form.

More information

User manual for the visitors of Interreg Danube Programme website

User manual for the visitors of Interreg Danube Programme website User manual for the visitors of Interreg Danube Programme website Table of contents National contact points... 2 Newsletter subscription... 2 Subscribe... 2 Unsubscribe... 2 Forum... 2 Approved projects...

More information

Using ODBC with MDaemon 6.5

Using ODBC with MDaemon 6.5 Using ODBC with MDaemon 6.5 Alt-N Technologies, Ltd 1179 Corporate Drive West, #103 Arlington, TX 76006 Tel: (817) 652-0204 2002 Alt-N Technologies. All rights reserved. Other product and company names

More information

API Guide v 1.6 14/11/2013

API Guide v 1.6 14/11/2013 1 About netcore netcore is a leader in digital communications space. The mission of the company is to help clients communicate effectively for marketing and business needs. We help organizations in the

More information

PDF Web Form. Projects 1

PDF Web Form. Projects 1 Projects 1 In this project, you ll create a PDF form that can be used to collect user data online. In this exercise, you ll learn how to: Design a layout for a functional form. Add form fields and set

More information

goaml PILOT STAKEHOLDER USER GUIDE REGISTRATION

goaml PILOT STAKEHOLDER USER GUIDE REGISTRATION goaml PILOT STAKEHOLDER USER GUIDE REGISTRATION FINANCIAL INTELLIGENCE CENTRE REPUBLIC OF SOUTH AFRICA Private Bag X177, Centurion, 0046 https://gostage.fic.gov.za/goamlweb_uat www.fic.gov.za/secure/queries.aspx

More information

Sitecore is a trademark of Sitecore A/S. All other brand and product names are the property of their respective holders.

Sitecore is a trademark of Sitecore A/S. All other brand and product names are the property of their respective holders. Newsletter Module User Manual Author: Sitecore A/S, Date: November 2003 Release: Release 4.0 Language: English Sitecore is a trademark of Sitecore A/S. All other brand and product names are the property

More information

ACR Triad Web Client. User s Guide. Version 2.5. 20 October 2008. American College of Radiology 2007 All rights reserved.

ACR Triad Web Client. User s Guide. Version 2.5. 20 October 2008. American College of Radiology 2007 All rights reserved. ACR Triad Web Client Version 2.5 20 October 2008 User s Guide American College of Radiology 2007 All rights reserved. CONTENTS ABOUT TRIAD...3 USER INTERFACE...4 LOGIN...4 REGISTER REQUEST...5 PASSWORD

More information

How to Get Set Up for the 2014 BE-180 and Request an Extension if Needed

How to Get Set Up for the 2014 BE-180 and Request an Extension if Needed How to Get Set Up for the 2014 BE-180 and Request an Extension if Needed For instructions on how to get set up for the 2014 BE-180 and to request an extension if one is needed, click on one of the links

More information

How to Create and Send Newsletter Using G-Lock EasyMail

How to Create and Send Newsletter Using G-Lock EasyMail How to Create and Send Newsletter Using G-Lock EasyMail Beginner s Guide 1 Page Table of Contents 1. Create E-Mail Account 3 2. Create Contact Group. 5 3. Import Contacts from External Database. 6 4. Compose

More information

Programming Autodesk PLM 360 Using REST. Doug Redmond Software Engineer, Autodesk

Programming Autodesk PLM 360 Using REST. Doug Redmond Software Engineer, Autodesk Programming Autodesk PLM 360 Using REST Doug Redmond Software Engineer, Autodesk Introduction This class will show you how to write your own client applications for PLM 360. This is not a class on scripting.

More information

Administrator s and Developer s Guide

Administrator s and Developer s Guide E-Mail Campaign Manager Administrator s and Developer s Guide Rev: 2013-11-22 E-Mail Campaign Manager for Sitecore CMS 6.5 Administrator s and Developer s Guide A Quick Start Guide and Configuration Reference

More information

E-Alerts for Parents. Schoolwires Centricity2

E-Alerts for Parents. Schoolwires Centricity2 E-Alerts for Parents Schoolwires Centricity2 Schoolwires Centricity2 E-Alerts for Parents Table of Contents What are E-Alerts?... 1 Broadcast E-Alerts... 1 Content E-Alerts... 1 How do I Register as a

More information

Microsoft Dynamics CRM Security Provider Module

Microsoft Dynamics CRM Security Provider Module Microsoft Dynamics CRM Security Provider Module for Sitecore 6.6-8.0 CRM Security Provider Rev: 2015-04-15 Microsoft Dynamics CRM Security Provider Module for Sitecore 6.6-8.0 Developer's Guide A developer's

More information

Using ilove SharePoint Web Services Workflow Action

Using ilove SharePoint Web Services Workflow Action Using ilove SharePoint Web Services Workflow Action This guide describes the steps to create a workflow that will add some information to Contacts in CRM. As an example, we will use demonstration site

More information

This is a training module for Maximo Asset Management V7.1. In this module, you learn to use the E-Signature user authentication feature.

This is a training module for Maximo Asset Management V7.1. In this module, you learn to use the E-Signature user authentication feature. This is a training module for Maximo Asset Management V7.1. In this module, you learn to use the E-Signature user authentication feature. Page 1 of 16 When you complete this module, you can perform these

More information

Grant Management System Training Guide Module 9 Notification Center Home Dashboard Ver 6.1 Updated: 2.13.2014

Grant Management System Training Guide Module 9 Notification Center Home Dashboard Ver 6.1 Updated: 2.13.2014 Grant Management System Training Guide Module 9 Notification Center Home Dashboard Ver 6.1 Updated: 2.13.2014 Prepared by: Table of Contents Module 9: Notification Center on the Home Dashboard This module

More information

Office365Mon Subscription Management API

Office365Mon Subscription Management API Office365Mon Subscription Management API Office365Mon provides a set of APIs for managing subscriptions in our service. With it you can do things like create a subscription, change the details about the

More information

This guide provides step by step instructions for using the IMF elibrary Data - My Data area. In this guide, you ll learn how to:

This guide provides step by step instructions for using the IMF elibrary Data - My Data area. In this guide, you ll learn how to: This guide provides step by step instructions for using the IMF elibrary Data - area. In this guide, you ll learn how to: Access your favorite and recently used data reports. Make sure you receive email

More information

Technical Specification Premium SMS gateway

Technical Specification Premium SMS gateway Technical Specification Premium SMS gateway Non-subscription services (TS.001) Author: Erwin van den Boom Version history v1.0 EvdB 12 september 2007 V1.1 DI 27 may 2009 V1.2 SvE 10 december 2009 V1.3

More information

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor This tutorial is going to take you through creating a mailing list application to send out a newsletter for your site. We'll be using

More information

Alkacon Software GmbH

Alkacon Software GmbH Software GmbH An der Wachsfabrik 13 DE - 50996 Köln (Cologne) Geschäftsführer / CEO Alexander Kandzior Amtsgericht Köln HRB 54613 Tel: +49 (0)2236 3826-0 Fax: +49 (0)2236 3826-20 http://www.alkacon.com

More information

2.1.4 - Association Anywhere Authentication Web Service

2.1.4 - Association Anywhere Authentication Web Service 2.1.4 - Association Anywhere Authentication Web Service ACGI has developed an authentication web service that allows permitted third-party sites to perform user authentication through the Association Anywhere

More information

Regroup Design Blueprint

Regroup Design Blueprint Prepared by Dory Weiss, ITS Last Edited September 28, 2012 November 15, 2012 Regroup Design Blueprint Executive Summary The functionality to send Informational, Operational, and Official messages via the

More information

Using WhatCounts Publicaster Edition To Send Transactional Emails

Using WhatCounts Publicaster Edition To Send Transactional Emails Using WhatCounts Publicaster Edition To Send Transactional Emails 1 DEFINITION Transactional email by definition is any message in which the primary purpose facilitates an already agreed-upon transaction

More information

Single Sign On Guide. Table of Contents

Single Sign On Guide. Table of Contents Single Sign On Guide Table of Contents I. Overview II. Benefits III. How SSO Works IV. Set-up Requirements and Recommendations V. Set-up Instructions a. Required Parameters b. Optional Parameters c. Error

More information

How To Filter A List In Jangomail In A Database In A Row 7.5.2.2 (For A List)

How To Filter A List In Jangomail In A Database In A Row 7.5.2.2 (For A List) Summary JangoMail Tutorial Advanced Filtering of List Members This tutorial teaches you how to filter a List to send to only members that match a certain criteria. Perhaps you only want to send to the

More information

IBM Unica emessage Version 8 Release 5 February 19, 2014. Transactional Email Administration Guide

IBM Unica emessage Version 8 Release 5 February 19, 2014. Transactional Email Administration Guide IBM Unica emessage Version 8 Release 5 February 19, 2014 Transactional Email Administration Guide Note Before using this information and the product it supports, read the information in Notices on page

More information

Private Medical Insurance

Private Medical Insurance Private Medical Insurance Web Service Integration Guide Version 1.0.0 Date 17/12/2014 Service Description Leads can be sent into LeadStream using the SOAP web service. This enables you to send Private

More information

Electronic Data Solutions. E-Prescription System Software Requirement Specifications. Version 1.0

Electronic Data Solutions. E-Prescription System Software Requirement Specifications. Version 1.0 E-Prescription System Software Requirement Specifications Version 1.0 Contents 1. Purpose... 3 1.1. Scope... 3 1.2. Definitions and abbreviations... 3 1.3. Overview... 3 2. Overall Description... 4 2.2

More information

Notification messages

Notification messages AXIS P8221 Network I/O Audio Module TECHNICAL NOTE Notification messages How to integrate AXIS P8221 Updated: August 19, 2011 Rev: 1.1 TABLE OF CONTENTS 1 INTRODUCTION 3 1.1 HTTP and TCP 3 1.2 VAPIX 3

More information

Cisco TelePresence Content Server

Cisco TelePresence Content Server Cisco TelePresence Content Server API Guide D1398008 August 2014 TABLE OF CONTENTS 1 INTRODUCTION... 5 1.1 Format of this document... 5 1.2 Variable usage... 6 1.3 Warnings... 6 2 SECURITY... 7 2.1 Security

More information

Acclipse Web Manager Emarketing. Create newsletter

Acclipse Web Manager Emarketing. Create newsletter Acclipse Web Manager Emarketing You can use the Emarketing area of Acclipse Web Manager to: Create newsletters to email to contacts via the Contacts area Duplicate existing newsletters Create master newsletters

More information

How To Integrate Marketo With Empathy Logic Cloud (Elc) On A Microsoft Marketo Campaign

How To Integrate Marketo With Empathy Logic Cloud (Elc) On A Microsoft Marketo Campaign Empathy Logic integration with Marketo Empathy Logic Cloud (ELC) integrates with Marketo by leveraging Marketo s data loader and API solutions to continuously synchronize all available data back and forth.

More information

Marketing Cloud Email Quick References Guide

Marketing Cloud Email Quick References Guide Marketing Cloud Email Quick References Guide Navigating Marketing Cloud Follow these steps navigate to the Email Creation/ Email Send section of Marketing Cloud. 1. Click the Email Icon in the top left

More information

Trunk E-Mail Archive Tool

Trunk E-Mail Archive Tool Why use the email archive? Trunk E-Mail Archive Tool Students adding and dropping a course are automatically added and removed from a Trunk course site Roster. Using the Trunk e-mail archive tool will

More information

Customer Bank Account Management System Technical Specification Document

Customer Bank Account Management System Technical Specification Document Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

Method of Unified Communications and Collaboration Service in Open Service Platform based on RESTful Web Services

Method of Unified Communications and Collaboration Service in Open Service Platform based on RESTful Web Services Method of Unified Communications and Collaboration Service in Open Service Platform based on RESTful Web Services Sunhwan Lim and Hyunjoo Bae Future Communications Research Laboratory, ETRI, Daejeon, Korea

More information

Passcreator API Documentation

Passcreator API Documentation Passcreator API Documentation Version 1.0 - December 2014 USt-IdNr.: DE290188967 Seite 1 von 9 About this Document 3 Obtaining an API key 3 Authentication 3 Testing 3 Get list of pass-templates 4 Get information

More information

Bug Report. Date: March 19, 2011 Reporter: Chris Jarabek (cjjarabe@ucalgary.ca)

Bug Report. Date: March 19, 2011 Reporter: Chris Jarabek (cjjarabe@ucalgary.ca) Bug Report Date: March 19, 2011 Reporter: Chris Jarabek (cjjarabe@ucalgary.ca) Software: Kimai Version: 0.9.1.1205 Website: http://www.kimai.org Description: Kimai is a web based time-tracking application.

More information

Operation of Qvidian Proposal Automation (QPA) CRM APIs

Operation of Qvidian Proposal Automation (QPA) CRM APIs Operation of Qvidian Proposal Automation (QPA) CRM APIs Last Updated: 10/30/2012 Background QPA is the leading application for the production of structured sales documents and for the management and completion

More information

Getting Started with the icontact API

Getting Started with the icontact API Getting Started with the icontact API Contents - Introduction -... 2 - URIs, URLs, Resources, and Supported Actions -... 3 Contacts Category... 3 Messages Category... 4 Track Category... 4 GET... 5 POST...

More information

NCH Secure Web Delivery Instructions

NCH Secure Web Delivery Instructions NCH Secure Web Delivery Instructions Typically when you send an email to a person, it is sent in Clear Text and can be viewed as it traverses the internet. Email is typically not considered a good vehicle

More information

This section will describe the different functions that can be used by the Interspire Email Marketer XML API.

This section will describe the different functions that can be used by the Interspire Email Marketer XML API. Introduction The Interspire Email Marketer XML API is a remotely accessible service API to allow Interspire Email Marketer users to run many of the Interspire Email Marketer API functions using XML requests.

More information

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new

More information

Przelewy24 WebServices

Przelewy24 WebServices Przelewy24 WebServices service@przelewy24.pl Version: 2.5.0, Date: 2012-11-29 1. Configuration To activate access to the Service: a. Send your IP address (your server s address) to service@przelewy24.pl

More information

Manage cloud infrastructures using Zend Framework

Manage cloud infrastructures using Zend Framework Manage cloud infrastructures using Zend Framework by Enrico Zimuel (enrico@zend.com) Senior Software Engineer Zend Framework Core Team Zend Technologies Ltd About me Email: enrico@zend.com Twitter: @ezimuel

More information

Prerequisite. Getting Started. Email Signing and Encryption using Microsoft outlook 2007

Prerequisite. Getting Started. Email Signing and Encryption using Microsoft outlook 2007 Email Signing and Encryption using Microsoft outlook 2007 Prerequisite a. The user s email account has been added and correctly configured into Microsoft outlook. b. The user has an authentication certificate.

More information

WHMCS Integration Manual

WHMCS Integration Manual WHMCS Integration Manual Manual for installing and configuring WHMCS module 1. Introduction BackupAgent has integrated its service as a module into WHMCS v5 and higher. Service Providers who use WHMCS

More information

Digitally Sign an InfoPath form and Submit using Email

Digitally Sign an InfoPath form and Submit using Email Digitally Sign an InfoPath form and Submit using Email In this video, I am going to show how you can take a Form such as the Form that I am looking at right now, the Resource Provisioning Form, Turn on

More information

User Manual. Document Management System

User Manual. Document Management System User Manual Document Management System Version 1.0 1 of 23 Table of Contents 1. Introduction... 4 2. Objective... 4 3. Login to E-Governance System... 4 4. Document Management System (DMS) in E-Governance

More information

THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY

THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY As the constantly growing demands of businesses and organizations operating in a global economy cause an increased

More information

BULK SMS APPLICATION USER MANUAL

BULK SMS APPLICATION USER MANUAL BULK SMS APPLICATION USER MANUAL Introduction Bulk SMS App is an online service that makes it really easy for you to manage contacts and send SMS messages to many people at a very fast speed. The Bulk

More information

Enrollment of Dependent / Beneficiary

Enrollment of Dependent / Beneficiary Overview NIS Policies Navigation Steps The agency Human Resources Representative can create dependent records so that an employee's dependent can participate in benefit plans, such as medical insurance.

More information

Océ LDAP Adapter User Guide

Océ LDAP Adapter User Guide Océ LDAP Adapter User Guide Océ PRISMAweb V4.0 The e-business solution for Print Service Providers _ Copyright 2005, 2006,2007 by Océ Printing Systems GmbH. All rights reserved. This User Documentation

More information

Email Address Fields and Email Messages. Schoolwires Centricity2

Email Address Fields and Email Messages. Schoolwires Centricity2 Email Address Fields and Email Messages Schoolwires Centricity2 Trademark Notice Schoolwires, the Schoolwires logos, and the unique trade dress of Schoolwires are the trademarks, service marks, trade dress

More information

Save Actions User Guide

Save Actions User Guide Microsoft Dynamics CRM for Sitecore CMS 6.3-6.5 Save Actions User Guide Rev: 2012-04-26 Microsoft Dynamics CRM for Sitecore CMS 6.3-6.5 Save Actions User Guide A practical guide to using Microsoft Dynamics

More information

Prerequisite. Getting Started. Email Signing and Encryption using Microsoft outlook 2010

Prerequisite. Getting Started. Email Signing and Encryption using Microsoft outlook 2010 Email Signing and Encryption using Microsoft outlook 2010 Prerequisite a. The user s email account has been added and correctly configured into Microsoft outlook. b. The user has an authentication certificate.

More information

Contact Management. User Guide V3.0. Subject to change without prior notice. www.teczo.com

Contact Management. User Guide V3.0. Subject to change without prior notice. www.teczo.com Contact Management V3.0 Subject to change without prior notice Table of Contents Table of Contents... 2 1.0 Module Overview... 3 2.0 Using the Module... 4 2.1 Contact Management Summary Page... 4 2.1.1

More information

TCS-CA. Outlook Express Configuration [VERSION 1.0] U S E R G U I D E

TCS-CA. Outlook Express Configuration [VERSION 1.0] U S E R G U I D E U S E R G U I D E TCS-CA Outlook Express Configuration [VERSION 1.0] C O N T E N T S 1 DESCRIPTION... 3 2 OUTLOOK EXPRESS AND CERTIFICATES... 4 3 ENABLING SECURITY SETTINGS FOR MAIL ACCOUNT... 5 3.1 Settings

More information

LearningServer Portal Manager

LearningServer Portal Manager Overview LearningServer Portal Manager Portal Manager is a web-based, add-on module to LearningServer that allows organizations to create multiple LearningServer web sites. Each site services different

More information

Broker Registration Guide for TrustFunds Authentication A- B- C Registration Steps 1-2- 3-4

Broker Registration Guide for TrustFunds Authentication A- B- C Registration Steps 1-2- 3-4 Broker Registration Guide for TrustFunds Authentication A- B- C Registration Steps 1-2- 3-4 Broker Authentication 1. From the TrustFunds website homepage, click Get Started Now to begin your Authentication

More information

Administrator s User Manual for OrangeHRM Version 3.0

Administrator s User Manual for OrangeHRM Version 3.0 Administrator s User Manual for OrangeHRM Version 3.0 All Rights Reserved. Published in the United States of America. This publication is protected by copyright, and permission must be obtained from the

More information

Application note: SQL@CHIP Connecting the IPC@CHIP to a Database

Application note: SQL@CHIP Connecting the IPC@CHIP to a Database Application note: SQL@CHIP Connecting the IPC@CHIP to a Database 1. Introduction This application note describes how to connect an IPC@CHIP to a database and exchange data between those. As there are no

More information

INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP

INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP by Dalibor D. Dvorski, March 2007 Skills Canada Ontario DISCLAIMER: A lot of care has been taken in the accuracy of information provided in this article,

More information

NAS E-mail Newsletter Help

NAS E-mail Newsletter Help NAS E-mail Newsletter Help Register a New Subscriber 1. NAS homepage: http://www.noridianmedicare.com 2. Select the E-mail Newsletter Sign Up from the left-hand navigation menu 3. The End User Agreement

More information

Fax via HTTP (POST) Traitel Telecommunications Pty Ltd 2012 Telephone: (61) (2) 9032 2700. Page 1

Fax via HTTP (POST) Traitel Telecommunications Pty Ltd 2012 Telephone: (61) (2) 9032 2700. Page 1 Fax via HTTP (POST) Page 1 Index: Introduction:...3 Usage:...3 Page 2 Introduction: TraiTel Telecommunications offers several delivery methods for its faxing service. This document will describe the HTTP/POST

More information

A basic create statement for a simple student table would look like the following.

A basic create statement for a simple student table would look like the following. Creating Tables A basic create statement for a simple student table would look like the following. create table Student (SID varchar(10), FirstName varchar(30), LastName varchar(30), EmailAddress varchar(30));

More information

Magensa Services. Administrative Account Services API Documentation for Informational Purposes Only. September 2014. Manual Part Number: 99810058-1.

Magensa Services. Administrative Account Services API Documentation for Informational Purposes Only. September 2014. Manual Part Number: 99810058-1. Magensa Services Administrative Account Services API Documentation for Informational Purposes Only September 2014 Manual Part Number: 99810058-1.01 REGISTERED TO ISO 9001:2008 Magensa I 1710 Apollo Court

More information

Instruction Guide. People First Dependent Certification Process

Instruction Guide. People First Dependent Certification Process People First Dependent Certification Process Each time an employee logs into People First to make an enrollment selection during open enrollment or because of a qualified status change (QSC), he/she must

More information

StreamServe Job Gateway

StreamServe Job Gateway StreamServe Job Gateway User Guide 4.1.2 SP2 Rev A StreamServe Job Gateway User Guide 4.1.2 SP2 Rev A 2007 StreamServe, Inc. StreamServe is a trademark of StreamServe, Inc. No part of this document may

More information

Email Marketing Software

Email Marketing Software Email Marketing Software I Email Marketing Software Table of Contents Foreword 0 Part I Mailer Utilities 1 1 Main Page... 1 2 Troubleshooting... 1 3 Translate... 6 Part II Manage News. List 6 1 Getting

More information

WebsitePanel Integration API

WebsitePanel Integration API WebsitePanel Integration API Author: Feodor Fitsner Last updated: 02/12/2010 Version: 1.0 Table of Contents Introduction... 1 Requirements... 1 Basic Authentication... 1 Basic Web Services... 1 Manage

More information

McAfee Enterprise Mobility Management 11.0 Software

McAfee Enterprise Mobility Management 11.0 Software Product Guide McAfee Enterprise Mobility Management 11.0 Software For use with epolicy Orchestrator 4.6.5-5.0 Software COPYRIGHT Copyright 2013 McAfee, Inc. Do not copy without permission. TRADEMARK ATTRIBUTIONS

More information

Sage Accpac CRM 5.8. Self Service Guide

Sage Accpac CRM 5.8. Self Service Guide Sage Accpac CRM 5.8 Self Service Guide Copyright 2005 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated,

More information

Using the Cisco Unity Connection Bulk Administration Tool

Using the Cisco Unity Connection Bulk Administration Tool APPENDIXA Using the Cisco Unity Connection Bulk Administration Tool The Cisco Unity Connection Bulk Administration Tool (BAT) allows you to create, update, and delete multiple user accounts or system contacts

More information

Migrating application users and passwords with Password Manager

Migrating application users and passwords with Password Manager Migrating application users and passwords with Password Manager 2015 Hitachi ID Systems, Inc. All rights reserved. Contents 1 Introduction 1 2 Migrating Users 1 3 Initializing Passwords 2 4 Maintaining

More information

Kroll Mail Module. Contents

Kroll Mail Module. Contents Kroll Mail Module Contents Accessing the Mail Module... 1 Mail Screen Explained... 2 Creating a Distribution List... 3 Composing a Message... 6 Sending Broadcast Messages from Central Maintenance... 8

More information

Implementing Identity Provider on Mobile Phone

Implementing Identity Provider on Mobile Phone Implementing Identity Provider on Mobile Phone Tsuyoshi Abe, Hiroki Itoh, and Kenji Takahashi NTT Information Sharing Platform Laboratories, NTT Corporation 3-9-11 Midoricho, Musashino-shi, Tokyo 180-8585,

More information

Online Railway Reservation. Intel Easy Steps 1 2012 Intel Corporation All rights reserved.

Online Railway Reservation. Intel Easy Steps 1 2012 Intel Corporation All rights reserved. Online Railway Reservation Intel Easy Steps 1 2012 Intel Corporation Online Railway Reservation Introducing Online Railway Reservation System Technology has transformed many aspects of life in the 21st

More information

Example for Using the PrestaShop Web Service : CRUD

Example for Using the PrestaShop Web Service : CRUD Example for Using the PrestaShop Web Service : CRUD This tutorial shows you how to use the PrestaShop web service with PHP library by creating a "CRUD". Prerequisites: - PrestaShop 1.4 installed on a server

More information

Merchant Web Services API

Merchant Web Services API Merchant Web Services API Automated Recurring Billing (ARB) SOAP Guide Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 042007 Ver.1.0 Authorize.Net LLC ( Authorize.Net

More information