extensions/{name}

Description

The extension with the specified name.

URL

/qcbin/rest/domains/{domain}/projects/{project}/customization/extensions/{name}

Remarks

The name attribute of the value in the extensions Collection is used to get the resource that represents an individual extension.

HTTP Methods

GET: Gets the specified extension resource.

PUT: N/A

DELETE: N/A

POST: N/A

Media Type
GET
PUT
DELETE
POST
application/xml
check
-
-
-
application/json check - - -

Returns

One of the HTTP Return Codes.

An XML string compliant with the extension schema or a string containing the data in another supported format.

Example

For this element of the data returned by extensions:
<Extension Name="QUALITY_CENTER" DisplayName="Quality Center"> <Version>11.50</Version> </Extension>

This is the extension URL:
/qcbin/rest/domains/DOMAIN_NAME/projects/PROJECT_NAME/customization/extensions/QUALITY_CENTER

Return Value Example

These examples are return values from URL:
/qcbin/rest/domains/DOMAIN_NAME/projects/PROJECT_NAME/customization/extensions/QUALITY_CENTER

XML Example

<Extension Name="QUALITY_CENTER" DisplayName="Quality Center">
    <Version>11.50</Version>
</Extension>

JSON Example

{
    "DisplayName": "Quality Center",
    "Name": "QUALITY_CENTER",
    "Version": "11.50"
}