katana_public_api_client.api.webhook.delete_webhook¶
katana_public_api_client.api.webhook.delete_webhook
¶
Classes¶
Functions¶
asyncio(id, *, client)
async
¶
Delete webhook
Deletes a single webhook by id.
Parameters:
-
id(int) –
Raises:
-
UnexpectedStatus–If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
-
TimeoutException–If the request takes longer than Client.timeout.
Returns:
-
Any | ErrorResponse | None–Union[Any, ErrorResponse]
Source code in katana_public_api_client/api/webhook/delete_webhook.py
asyncio_detailed(id, *, client)
async
¶
Delete webhook
Deletes a single webhook by id.
Parameters:
-
id(int) –
Raises:
-
UnexpectedStatus–If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
-
TimeoutException–If the request takes longer than Client.timeout.
Returns:
-
Response[Any | ErrorResponse]–Response[Union[Any, ErrorResponse]]
Source code in katana_public_api_client/api/webhook/delete_webhook.py
sync(id, *, client)
¶
Delete webhook
Deletes a single webhook by id.
Parameters:
-
id(int) –
Raises:
-
UnexpectedStatus–If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
-
TimeoutException–If the request takes longer than Client.timeout.
Returns:
-
Any | ErrorResponse | None–Union[Any, ErrorResponse]
Source code in katana_public_api_client/api/webhook/delete_webhook.py
sync_detailed(id, *, client)
¶
Delete webhook
Deletes a single webhook by id.
Parameters:
-
id(int) –
Raises:
-
UnexpectedStatus–If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
-
TimeoutException–If the request takes longer than Client.timeout.
Returns:
-
Response[Any | ErrorResponse]–Response[Union[Any, ErrorResponse]]