GET Test Configurations Example

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!-- GET: /qcbin/rest/domains/DOMAIN_NAME/projects/PROJECT_NAME/test-configs Accept: application/xml --> <Entities TotalResults="1"> <Entity Type="test-config"> <ChildrenCount> <Value>0</Value> </ChildrenCount> <Fields> <Field Name="owner"> <Value></Value> </Field> <Field Name="test-name"> <Value>test1</Value> </Field> <Field Name="data-obj"> <Value></Value> </Field> <Field Name="data-filtering"> <Value></Value> </Field> <Field Name="description"> <Value></Value> </Field> <Field Name="has-dependencies"> <Value>0</Value> </Field> <Field Name="exec-status"> <Value>Passed</Value> </Field> <Field Name="last-modified"> <Value>2020-02-24 14:13:41</Value> </Field> <Field Name="vc-checkout-user-name"> <Value></Value> </Field> <Field Name="attachment"> <Value></Value> </Field> <Field Name="creation-time"> <Value>2020-02-17</Value> </Field> <Field Name="name"> <Value>test1</Value> </Field> <Field Name="data-state"> <Value>0</Value> </Field> <Field Name="id"> <Value>1002</Value> </Field> <Field Name="parent-id"> <Value>2</Value> </Field> </Fields> <RelatedEntities/> </Entity> <singleElementCollection>false</singleElementCollection> </Entities>

GET /qcbin/rest/domains/DOMAIN_NAME/projects/PROJECT_NAME/test-configs Accept: application/json { "entities": [ { "Fields": [ { "Name": "owner", "values": [ {} ] }, { "Name": "test-name", "values": [ { "value": "test1" } ] }, { "Name": "data-obj", "values": [ {} ] }, { "Name": "data-filtering", "values": [ {} ] }, { "Name": "description", "values": [ {} ] }, { "Name": "has-dependencies", "values": [ { "value": "0" } ] }, { "Name": "exec-status", "values": [ { "value": "Passed" } ] }, { "Name": "last-modified", "values": [ { "value": "2020-02-24 14:13:41" } ] }, { "Name": "vc-checkout-user-name", "values": [ {} ] }, { "Name": "attachment", "values": [ {} ] }, { "Name": "creation-time", "values": [ { "value": "2020-02-17" } ] }, { "Name": "name", "values": [ { "value": "test1" } ] }, { "Name": "data-state", "values": [ { "value": "0" } ] }, { "Name": "id", "values": [ { "value": "1002" } ] }, { "Name": "parent-id", "values": [ { "value": "2" } ] } ], "Type": "test-config", "children-count": 0 } ], "TotalResults": 1 }