projects Collection
Description
The projects in a domain the current user can access.
URL
/qcbin/rest/domains/{domain}/projects
HTTP Methods
GET: Gets the collection of projects in the specified domain.
PUT: N/A
DELETE: N/A
POST: N/A
Media Type | GET
| PUT
| DELETE
| POST
|
---|---|---|---|---|
application/xml | ![]() | - | - | - |
application/json | ![]() | - | - | - |
Returns
One of the HTTP Return Codes.
An XML string compliant with the Projects collection schema, listing the projects in the domain, or a string containing the data in another supported format.
Examples

<Projects> <Project UID="30d97ad9-2242-45fa-9807-71825d74ec56" Name="project1"/> <Project UID="cb3f0efb-066e-40b4-a736-1acdec858d8f" Name="project2"/> <Project UID="4c59ba4f-2dd1-4a4e-8b43-c83d53835cda" Name="project3"/> </Projects>

{ "Projects": { "Project": [ { "UID": "30d97ad9-2242-45fa-9807-71825d74ec56", "Name": "project1" }, { "UID": "cb3f0efb-066e-40b4-a736-1acdec858d8f", "Name": "project2" }, { "UID": "4c59ba4f-2dd1-4a4e-8b43-c83d53835cda", "Name": "project3" } ] }