Starting from the Root Sections URL

Submit an HTTP request like this:

curl -u user:password -X GET http://host-ip-address/webservice/escenic/section/ROOT/subsections

This returns an Atom feed containing the root sections of all the publications to which your user has access. Your client program must then parse the feed and extract the URLs it needs. Below is an example of a root sections feed:

<feed xmlns="http://www.w3.org/2005/Atom">
  <author>
    <name>Escenic Content Engine</name>
  </author>   
  <category term="1234" scheme="http://myTaggingBackend/myTagStructure/" label="MyTag"/>
  <id>http://host-ip-address/webservice/escenic/section/ROOT/subsections</id>   
  <link rel="self" 
        href="http://host-ip-address/webservice/escenic/section/ROOT/subsections" 
        type="application/atom+xml"/>  
  <updated>2010-06-23T16:51:06.721Z</updated> 
  <title type="text">Publication root sections you are authorized to.</title> 
  <link rel="changelog" 
        href="http://host-ip-address/webservice/escenic/changelog" 
        type="application/atom+xml"/>
  <entry> 
    <id>http://host-ip-address/webservice/escenic/section/1</id>
    <title type="text">frontpage</title>  
    <updated>2010-06-22T10:16:46.309Z</updated>   
    <category term="directory" scheme="http://www.vizrt.com/types"/>  
    <link rel="edit-media"
          type="application/vnd.escenic.content+xml;type=com.escenic.section" 
          href="http://host-ip-address/webservice/escenic/section/1"/>
    <link xmlns:thr="http://purl.org/syndication/thread/1.0"
          rel="down" 
          href="http://host-ip-address/webservice/escenic/section/1/subsections" 
          type="application/atom+xml"
          thr:count="8"/>
    <link rel="http://www.vizrt.com/types/relation/inboxes" 
          href="http://host-ip-address/webservice/escenic/section/1/inboxes" 
          type="application/atom+xml"/>   
    <link rel="http://www.vizrt.com/types/relation/lists" 
          href="http://host-ip-address/webservice/escenic/section/1/lists" 
          type="application/atom+xml"/>   
    <link rel="http://www.vizrt.com/types/relation/pages" 
          href="http://host-ip-address/webservice/escenic/section/1/pages" 
          type="application/atom+xml"/>   
    <link rel="http://www.vizrt.com/types/relation/content-items" 
          href="http://host-ip-address/webservice/escenic/section/1/content-items" 
          type="application/atom+xml"/> 
    <link rel="http://www.vizrt.com/types/relation/changelog" 
          href="http://host-ip-address/webservice/escenic/changelog/section/1" 
          type="application/atom+xml"/>
  </entry>
  ...[other entry elements representing other root sections omitted here]...
</feed>

Each entry represents the root section of a publication, and the links in each entry represent the operations available for that root section.