Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
Top
Top

...

Table of Contents
maxLevel1

Back to Top

...

GET

This GET service will return a list of resource types in the form of JSON objects based on a query parameter for the display name. Resource Types are only returned if they equal contain the specified parameter. If no query parameters are given this request will return the entire list of resource types.


Info
titleAPI URLs

http://host:port/flexdeploy/rest/administration/resourcetypes?

Append the following character sequences to the above URL to specify Query parameters.

resourceTypeName={resourceTypeName}

Examples:
To return all of the resource types:

http://host:port/flexdeploy/rest/administration/resourcetypes

To search by name only:

http://host:port/flexdeploy/rest/administration/resourcetypes?resourceTypeName={resourceTypeName}

...

http://host:port/flexdeploy/rest/administration/resourcetypes?resourceTypeName=EBS forms service

The GET request would return theĀ  following JSON resource type object

Code Block
themeEclipse
titleResource Type
[
{
    "resourceTypeName": "Oracle Forms and Reports Server",
    "resourceTypeId": 24400,
    "isActive": true,
    "description": null
},
{
    	"resourceTypeName": "EBS Forms Service",
  	  "resourceTypeId": 19182,
   	 "isActive": true,
	    "description": null
}
]

Back to Top

...