Vorheriges Thema: Get All Capabilities

Nächstes Thema: Delete a Capability

Get a Capability by UUID

This web service displays information for a specific capability.

HTTP Type

GET

Restriction

None. Open to all public users.

URI

{type}/SMI/{version}/capability/{capabilityUUID}

Parameter

Description

{capabilityUUID}

UUID of the capability being created.

&key

The API Key that is provided when your application has been registered.

&secret

The Shared Secret that is provided when your application has been registered.

Example:

The following URI displays the capability “Order Processing” and its specific data.

https://smi.cloudcommons.com:8443/Insight_API/json/SMI/0.5/capability/10c8119e-bf63-11df-be7b-efa17c147565?key=df3936ec01c5d3adf9f0048116cd5b84&secret=13f6232ebf484e57103cd4ac234a22aa

Sample output of successful execution:

{
"result":
	{
	"returnCode": "0",
	"errorMessage": "Operation Successful.",
	"resultCount": 1,
	"Bean-List": {
		"ResourceCapability-Bean":[
			{ "uuid": "10c8119e-bf63-11df-be7b-efa17c147565", "name": "Directory", "createdBy": "SMIGLOBAL", "creationDate": "1970-01-01 00:00:00.0", "description": "one of capability measurement for Characteristic Capability", "isStandard": "1" }
					   ]
		     }
	}
}