POST api/Toggle/Post
Request Information
URI Parameters
None.
Body Parameters
Payload| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| object | string |
None. |
|
| api_version | string |
None. |
|
| webhook_version | string |
None. |
|
| created_at | date |
None. |
|
| type | string |
None. |
|
| data | Object |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"object": "sample string 2",
"api_version": "sample string 3",
"webhook_version": "sample string 4",
"created_at": "2025-12-05T12:02:11.8365072+00:00",
"type": "sample string 6",
"data": {}
}
application/xml, text/xml
Sample:
<Payload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ToggleWebhook.Models"> <_object>sample string 2</_object> <api_version>sample string 3</api_version> <created_at>2025-12-05T12:02:11.8365072+00:00</created_at> <data /> <id>1</id> <type>sample string 6</type> <webhook_version>sample string 4</webhook_version> </Payload>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Output| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | boolean |
None. |
|
| Error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": true,
"Error": "sample string 2"
}
application/xml, text/xml
Sample:
<Output xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ToggleWebhook.Models"> <Error>sample string 2</Error> <Response>true</Response> </Output>