Get a List of Decision Services of a Decision Model Snapshot

get

/ic/api/process/v1/dmn/spaces/{spaceId}/decision-models/{decisionModelName}/versions/{decisionModelVersion}/definition/decision-services

Reads the list of decision services of a decision model snapshot.

Request

Path Parameters
Header Parameters
  • Authorization header MUST be set to type Bearer and an access token must be provided i.e. 'Bearer '
    Default Value: Bearer XXXXX.XXXXX.XXXXX
Back to Top

Response

Supported Media Types

200 Response

Successful Response
Body ()
Root Schema : RestCollection
Match All
Show Source
Nested Schema : RestObject
Type: object
Show Source
Nested Schema : RestCollection-allOf[1]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Example Response (application/json)
{
    "@class":".RestCollection",
    "name":"decision-services",
    "lastChangedTime":"2017/02/04T17:37:05",
    "lastChangedBy":"jlondon",
    "createdTime":"2017/01/14T18:57:29",
    "createdBy":"jlondon",
    "items":[
        {
            "@class":".DecisionService",
            "name":"Test Service"
        }
    ]
}

401 Response

Unauthorized

403 Response

Forbidden (Expired or invalid token)

404 Response

Not Found

500 Response

Internal Server Error
Back to Top