POST api/v1/Triggers/SendToQueue
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
TriggerViewModelName | Description | Type | Additional information |
---|---|---|---|
IsHybrid | boolean |
None. |
|
IsSAMLLogin | boolean |
None. |
|
IsCustomLogin | boolean |
None. |
|
EmailTemplate | string |
None. |
|
UserIds | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "IsHybrid": true, "IsSAMLLogin": true, "IsCustomLogin": true, "EmailTemplate": "sample string 4", "UserIds": [ 1, 2 ] }
text/html
Sample:
{"IsHybrid":true,"IsSAMLLogin":true,"IsCustomLogin":true,"EmailTemplate":"sample string 4","UserIds":[1,2]}
text/xml
Sample:
<TriggerViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassAPIWithVersion.Models"> <EmailTemplate>sample string 4</EmailTemplate> <IsCustomLogin>true</IsCustomLogin> <IsHybrid>true</IsHybrid> <IsSAMLLogin>true</IsSAMLLogin> <UserIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </UserIds> </TriggerViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.