PUT api/pinches/{pinchId}/triggerPush
Trigger pushing a pinch to devices
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pinchId | globally unique identifier |
Required |
Body Parameters
PinchPushDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Settings | Collection of UserExternalAppSettingDto |
None. |
|
| ViewType | PinchViewTypeEnum |
None. |
|
| Url | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Settings": [
{
"Id": "79372e3e-ced0-48b7-8e12-c25f6096503b",
"ExternalPinchId": "sample string 2",
"Description": "sample string 3",
"ExternalAppId": "sample string 4"
},
{
"Id": "79372e3e-ced0-48b7-8e12-c25f6096503b",
"ExternalPinchId": "sample string 2",
"Description": "sample string 3",
"ExternalAppId": "sample string 4"
}
],
"ViewType": 0,
"Url": "sample string 1"
}
Response Information
Resource Description
PinchPushResultDto| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| FailureMessages | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"FailureMessages": [
"sample string 1",
"sample string 2"
]
}