RestServiceTarget¶
RestServiceTarget Properties¶
| Property | Type | Required |
|---|---|---|
| OutputPath | string |
No |
| Path | string |
Yes |
| RequestProperties | RequestProperties | Yes |
| Service | Service | Yes |
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.
- type: RequestProperties
Service¶
The target REST Service.
- type: 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"
}
}