apiV1WebhooksPostWithHttpInfo method
Create webhook
Register a new webhook endpoint
Note: This method returns the HTTP Response.
Parameters:
- CreateWebhook createWebhook:
Implementation
Future<Response> apiV1WebhooksPostWithHttpInfo({ CreateWebhook? createWebhook, }) async {
// ignore: prefer_const_declarations
final path = r'/api/v1/webhooks';
// ignore: prefer_final_locals
Object? postBody = createWebhook;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}