Get an Action Product

get

/action/product

Retrieves the action product.

Request

There are no request parameters for this operation.

Back to Top

Response

200 Response

The action product was retrieved successfully.
Back to Top

Examples

The following example shows how to retrieve a product's actions by submitting a GET request on the REST resource using cURL. For more information about cURL, see "Use cURL".

curl -X GET "hostname:port/action/product" -H "accept: */*"

Example of Response Body

If successful, the response code 200 is returned with a response body. For example:

{
  "todo",
  "system",
  "siebel-soap-service",
  "siebel-service",
  "siebel-rest-service",
  "pdc",
  "launch-publish",
  "launch-project",
  "launch-lifecyclestatus",
  "launch_expanded",
  "launch",
  "JSON",
  "brm-tmf-service",
  "brm-ssh-test",
  "brm-bcws-service",
  "aia-soap-service"
]

If the request fails, the response includes the appropriate HTTP code. For a 4xx/5xx code, the message body also contains a ProblemDetails structure with the cause attribute set to the appropriate application error.

Back to Top