inwise - email marketing and newsletter software company
 
inwise Top Background
Arrow on Service

Groups Create Folder
Footer

Groups Create Folder

Operation Name: operation Name
Description: description

All actions require a valid user name and password using authenticaion header.
Show a raw xml example including the authentication header.

Service url:https://api.inwise.com/InwiseWebServices.asmx

Adding a reference to inwise web services

User Name:
Password:  
New Folder name: 

[Obsolute]
This method is obsolute and will be removed soon
The service enables you to create a new groups folder.
The returned value of the operation is the new folder id.

Parameters:

  • String folderName
    The name of the new folder.
    This value must be a valid folder name. Some special characters may cause the system to decline the request.
    The name must be unique. You can not have more than 1 folder with the same name.

Java Code:

//get a reference to the service InwiseWebServices ws = new InwiseWebServices();
InwiseWebServicesSoap inwiseWebServicesSoap = ws.getInwiseWebServicesSoap();

//fill the security header
HeaderHandler hh = new HeaderHandler("myusername", "myPassword");
hh.setHeader(inwiseWebServicesSoap);


//the new folder name
String folderName = "groups folder 1";

//call the operation
int folderID = inwiseWebServicesSoap.groupsCreateFolder(folderName);

C# Code:

//get a reference to the service

        InwiseWebServices.InwiseWebServices ws = new InwiseWebServices.InwiseWebServices();

 

        //fill the security header

        InwiseWebServices.SecHeader header = new InwiseWebServices.SecHeader();

        header.username = "username";

        header.pass = "myPassword";

        ws.SecHeaderValue = header;//set credentials

 

        //the new folder name

        string folderName = "groups folder 1";

 

        //call the operation

        int folderID = ws.Groups_CreateFolder(folderName);

VB Code:

 'get a reference to the service

        Dim ws As InwiseWebServices.InwiseWebServices = New InwiseWebServices.InwiseWebServices()

 

        'fill the security header

        Dim header As InwiseWebServices.SecHeader = New InwiseWebServices.SecHeader()

        header.username = "username"

        header.pass = "myPassword"

        ws.SecHeaderValue = header 'set credentials

 

        'the new folder name

        Dim folderName As String = "groups folder 1"

 

        'call the operation

        Dim folderID As Integer = ws.Groups_CreateFolder(folderName)






Home  |  About us  |  Products  |  Service  |  Partners  |  Forum  |  Email Marketing Terms  |  Support  |  Contact us
Terms & Conditions  |  Privacy Policy  |  Anti Spam Policy  |  Site Map
© 2008 inwise LTD. All rights reserved.