GET Release Folders Example
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!-- GET: /qcbin/rest/domains/DOMAIN_NAME/projects/PROJECT_NAME/release-folders Accept: application/xml --> <Entities TotalResults="2"> <Entity Type="release-folder"> <ChildrenCount> <Value>0</Value> </ChildrenCount> <Fields> <Field Name="ver-stamp"> <Value>1</Value> </Field> <Field Name="hierarchical-path"> <Value>AAA</Value> </Field> <Field Name="name"> <Value>Releases</Value> </Field> <Field Name="description"> <Value></Value> </Field> <Field Name="id"> <Value>1</Value> </Field> <Field Name="has-attachments"> <Value></Value> </Field> <Field Name="parent-id"> <Value>-1</Value> </Field> </Fields> <RelatedEntities/> </Entity> … <singleElementCollection>false</singleElementCollection> </Entities>
GET /qcbin/rest/domains/DOMAIN_NAME/projects/PROJECT_NAME/release-folders Accept: application/json { "entities": [ { "Fields": [ { "Name": "ver-stamp", "values": [ { "value": "1" } ] }, { "Name": "hierarchical-path", "values": [ { "value": "AAA" } ] }, { "Name": "name", "values": [ { "value": "Releases" } ] }, { "Name": "description", "values": [ {} ] }, { "Name": "id", "values": [ { "value": "1" } ] }, { "Name": "has-attachments", "values": [ {} ] }, { "Name": "parent-id", "values": [ { "value": "-1" } ] } ], "Type": "release-folder", "children-count": 0 } … ], "TotalResults": 2 }