POST api/save-webhook-logs
Request Information
URI Parameters
None.
Body Parameters
Collection of webhooklogName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
FlowId | integer |
None. |
|
Trigger | string |
None. |
|
Action | string |
None. |
|
IsSuccess | boolean |
None. |
|
ExecutedOn | date |
None. |
Request Formats
application/json, text/json
Sample:
[ { "Id": 1, "FlowId": 1, "Trigger": "sample string 2", "Action": "sample string 3", "IsSuccess": true, "ExecutedOn": "2025-03-15T15:47:24.7112059+08:00" }, { "Id": 1, "FlowId": 1, "Trigger": "sample string 2", "Action": "sample string 3", "IsSuccess": true, "ExecutedOn": "2025-03-15T15:47:24.7112059+08:00" } ]
application/xml, text/xml
Sample:
<ArrayOfwebhooklog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChapierAPI.DataModels.Mondaycom"> <webhooklog> <Action>sample string 3</Action> <ExecutedOn>2025-03-15T15:47:24.7112059+08:00</ExecutedOn> <FlowId>1</FlowId> <Id>1</Id> <IsSuccess>true</IsSuccess> <Trigger>sample string 2</Trigger> </webhooklog> <webhooklog> <Action>sample string 3</Action> <ExecutedOn>2025-03-15T15:47:24.7112059+08:00</ExecutedOn> <FlowId>1</FlowId> <Id>1</Id> <IsSuccess>true</IsSuccess> <Trigger>sample string 2</Trigger> </webhooklog> </ArrayOfwebhooklog>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |