POST Api/Automation/Execute/Trigger/Date/Multiple/{triggerCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| triggerCode | integer |
Required |
Body Parameters
AutomationExecuteDateMultipleParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| EntityIdWithModels | Dictionary of integer [key] and string [value] |
None. |
|
| DeletedEntityIds | Collection of integer |
None. |
|
| ModelType | Type |
None. |
Request Formats
application/json, text/json
Sample:
{
"EntityIdWithModels": {
"1": "sample string 2",
"3": "sample string 4"
},
"DeletedEntityIds": [
1,
2
],
"ModelType": null
}
application/xml, text/xml
Sample:
<AutomationExecuteDateMultipleParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAdmin.Model.Models.AutomationView">
<DeletedEntityIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</DeletedEntityIds>
<EntityIdWithModels xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfintstring>
<d2p1:Key>1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfintstring>
<d2p1:KeyValueOfintstring>
<d2p1:Key>3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfintstring>
</EntityIdWithModels>
<ModelType xmlns:d2p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" />
</AutomationExecuteDateMultipleParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.