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
PinchPushDtoName | Description | Type | Additional information |
---|---|---|---|
Settings | Collection of UserExternalAppSettingDto |
None. |
|
ViewType | PinchViewTypeEnum |
None. |
|
Url | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Settings": [ { "Id": "22552e39-9ed6-42b4-a268-90f8376c316c", "ExternalPinchId": "sample string 2", "Description": "sample string 3", "ExternalAppId": "sample string 4" }, { "Id": "22552e39-9ed6-42b4-a268-90f8376c316c", "ExternalPinchId": "sample string 2", "Description": "sample string 3", "ExternalAppId": "sample string 4" } ], "ViewType": 0, "Url": "sample string 1" }
Response Information
Resource Description
PinchPushResultDtoName | 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" ] }