Skip to content

RestServiceTarget

RestServiceTarget Properties

Property Type Required
OutputPath string Optional
Path string Required
RequestProperties RequestProperties Required
Service Service Required

OutputPath

The path of the response JSON object such as "/d/results".

  • type: string

Path

The endpoints such as "/users" or "/reports/summary".

  • type: string

RequestProperties

The required properties to send a request to REST service.


Service

The target REST Service.


Examples

The default accept request Http header is set to "application/json".

Get portion of response json object

{
    "Target": {
      "Path": "/Groups",
      "RequestProperties": {
        "Method": "GET"
      },
      "OutputPath": "/d/results",
      "Service": "/MyMDKApp/Services/MyRest.service"
    }
}