Tema anterior: Get All Categories

Tema siguiente: Get All Capabilities for a Category

Get a Category by UUID

This web service lists a specific category by UUID.

HTTP Type

GET

Restriction

None. Open to all public users.

URI

{type}/SMI/{version}/category/{categoryUUID}

Parameter

Description

{categoryUUID}

UUID of the category to query.

&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 category “E-Commerce” and its specific data.

https://smi.cloudcommons.com:8443/Insight_API/json/SMI/0.5/category/aba45240-8291-11df-bca3-339c3162b513?key=df3936ec01c5d3adf9f0048116cd5b84&secret=13f6232ebf484e57103cd4ac234a22aa

Sample output of successful execution:

{
"result":
	{
	"returnCode": "0",
	"errorMessage": "Operation Successful.",
	"resultCount": 1,
	"Bean-List": {
		"ResourceCategory-Bean":[
			{ "uuid": "aba45240-8291-11df-bca3-339c3162b513", "name": "E-mail", "description": "E-mail as a service", "creationDate": "1970-01-01 00:00:00.0", "isStandard": "1" }
					]

		     }
	}
}