extensions Collection
Description
The extensions enabled in a project.
URL
/qcbin/rest/domains/{domain}/projects/{project}/customization/extensions
Remarks
The name attribute of the extension is used to get the resource that represents an individual extension. See extensions/{name} .
HTTP Methods
GET: Gets the collection of extensions enabled in the specified project.
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.
A string listing the extensions in the project. Either an XML string compliant with the Extensions collection schema or a string containing the data in another supported format.
Examples

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!-- GET: /qcbin/rest/domains/DOMAIN_NAME/projects/PROJECT_NAME/customization/extensions Accept: application/xml --> <Extensions> <Extension Name="SPRINTER_EXTENSION" DisplayName="Sprinter"> <Version>15.50</Version> </Extension> <Extension Name="ANALYSIS" DisplayName="Analysis Extension"> <Version>15.50</Version> </Extension> <Extension Name="QUALITY_CENTER" DisplayName="Quality Center"> <Version>15.50</Version> </Extension> </Extensions>

{ "Extensions": [ { "DisplayName": "Sprinter", "Name": "SPRINTER_EXTENSION", "Version": "15.50" }, { "DisplayName": "Analysis Extension", "Name": "ANALYSIS", "Version": "15.50" }, { "DisplayName": "Quality Center", "Name": "QUALITY_CENTER", "Version": "15.50" } ] }