Folder


Click here for a complete list of operations.

RenameFolder

Renames the folder by ID.

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
FolderID:
Title:

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 /Workarea/Webservices/WebServiceAPI/Folder.asmx HTTP/1.1
Host: www.crenshawchristiancenter.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/RenameFolder"

<?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:Header>
    <AuthenticationHeader xmlns="http://tempuri.org/">
      <Username>string</Username>
      <Password>string</Password>
      <Domain>string</Domain>
    </AuthenticationHeader>
    <RequestInfoParameters xmlns="http://tempuri.org/">
      <ContentLanguage>int</ContentLanguage>
    </RequestInfoParameters>
  </soap:Header>
  <soap:Body>
    <RenameFolder xmlns="http://tempuri.org/">
      <FolderID>int</FolderID>
      <Title>string</Title>
    </RenameFolder>
  </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>
    <RenameFolderResponse xmlns="http://tempuri.org/">
      <RenameFolderResult>boolean</RenameFolderResult>
    </RenameFolderResponse>
  </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 /Workarea/Webservices/WebServiceAPI/Folder.asmx HTTP/1.1
Host: www.crenshawchristiancenter.net
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:Header>
    <AuthenticationHeader xmlns="http://tempuri.org/">
      <Username>string</Username>
      <Password>string</Password>
      <Domain>string</Domain>
    </AuthenticationHeader>
    <RequestInfoParameters xmlns="http://tempuri.org/">
      <ContentLanguage>int</ContentLanguage>
    </RequestInfoParameters>
  </soap12:Header>
  <soap12:Body>
    <RenameFolder xmlns="http://tempuri.org/">
      <FolderID>int</FolderID>
      <Title>string</Title>
    </RenameFolder>
  </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>
    <RenameFolderResponse xmlns="http://tempuri.org/">
      <RenameFolderResult>boolean</RenameFolderResult>
    </RenameFolderResponse>
  </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 /Workarea/Webservices/WebServiceAPI/Folder.asmx/RenameFolder?FolderID=string&Title=string HTTP/1.1
Host: www.crenshawchristiancenter.net
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<boolean xmlns="http://tempuri.org/">boolean</boolean>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /Workarea/Webservices/WebServiceAPI/Folder.asmx/RenameFolder HTTP/1.1
Host: www.crenshawchristiancenter.net
Content-Type: application/x-www-form-urlencoded
Content-Length: length

FolderID=string&Title=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<boolean xmlns="http://tempuri.org/">boolean</boolean>