All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
ObjectWebhookAPI_webhookCreateObjectV2 | POST /2/object/webhook | Create a new Webhook |
ObjectWebhookAPI_webhookDeleteObjectV1 | DELETE /1/object/webhook/{pkiWebhookID} | Delete an existing Webhook |
ObjectWebhookAPI_webhookEditObjectV1 | PUT /1/object/webhook/{pkiWebhookID} | Edit an existing Webhook |
ObjectWebhookAPI_webhookGetHistoryV1 | GET /1/object/webhook/{pkiWebhookID}/getHistory | Retrieve the logs for recent Webhook calls |
ObjectWebhookAPI_webhookGetListV1 | GET /1/object/webhook/getList | Retrieve Webhook list |
ObjectWebhookAPI_webhookGetObjectV2 | GET /2/object/webhook/{pkiWebhookID} | Retrieve an existing Webhook |
ObjectWebhookAPI_webhookRegenerateApikeyV1 | POST /1/object/webhook/{pkiWebhookID}/regenerateApikey | Regenerate the Apikey |
ObjectWebhookAPI_webhookTestV1 | POST /1/object/webhook/{pkiWebhookID}/test | Test the Webhook by calling the Url |
// Create a new Webhook
//
// The endpoint allows to create one or many elements at once.
//
webhook_create_object_v2_response_t* ObjectWebhookAPI_webhookCreateObjectV2(apiClient_t *apiClient, webhook_create_object_v2_request_t *webhook_create_object_v2_request);
Name | Type | Description | Notes |
---|---|---|---|
apiClient | apiClient_t * | context containing the client configuration | |
webhook_create_object_v2_request | webhook_create_object_v2_request_t * |
webhook_create_object_v2_response_t *
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// Delete an existing Webhook
//
//
//
webhook_delete_object_v1_response_t* ObjectWebhookAPI_webhookDeleteObjectV1(apiClient_t *apiClient, int *pkiWebhookID);
Name | Type | Description | Notes |
---|---|---|---|
apiClient | apiClient_t * | context containing the client configuration | |
pkiWebhookID | int * |
webhook_delete_object_v1_response_t *
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// Edit an existing Webhook
//
//
//
webhook_edit_object_v1_response_t* ObjectWebhookAPI_webhookEditObjectV1(apiClient_t *apiClient, int *pkiWebhookID, webhook_edit_object_v1_request_t *webhook_edit_object_v1_request);
Name | Type | Description | Notes |
---|---|---|---|
apiClient | apiClient_t * | context containing the client configuration | |
pkiWebhookID | int * | ||
webhook_edit_object_v1_request | webhook_edit_object_v1_request_t * |
webhook_edit_object_v1_response_t *
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// Retrieve the logs for recent Webhook calls
//
//
//
webhook_get_history_v1_response_t* ObjectWebhookAPI_webhookGetHistoryV1(apiClient_t *apiClient, int *pkiWebhookID, ezmax_api_definition__full_webhookGetHistoryV1_eWebhookHistoryinterval_e eWebhookHistoryinterval);
Name | Type | Description | Notes |
---|---|---|---|
apiClient | apiClient_t * | context containing the client configuration | |
pkiWebhookID | int * | ||
eWebhookHistoryinterval | ezmax_api_definition__full_webhookGetHistoryV1_eWebhookHistoryinterval_e | The number of days to return |
webhook_get_history_v1_response_t *
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// Retrieve Webhook list
//
// Enum values that can be filtered in query parameter *sFilter*: | Variable | Valid values | |---|---| | eWebhookModule | Ezsign<br>Management | | eWebhookEzsignevent | DocumentCompleted<br>FolderCompleted | | eWebhookManagementevent | UserCreated |
//
webhook_get_list_v1_response_t* ObjectWebhookAPI_webhookGetListV1(apiClient_t *apiClient, ezmax_api_definition__full_webhookGetListV1_eOrderBy_e eOrderBy, int *iRowMax, int *iRowOffset, header_accept_language_e Accept_Language, char *sFilter);
Name | Type | Description | Notes |
---|---|---|---|
apiClient | apiClient_t * | context containing the client configuration | |
eOrderBy | ezmax_api_definition__full_webhookGetListV1_eOrderBy_e | Specify how you want the results to be sorted | [optional] |
iRowMax | int * | [optional] | |
iRowOffset | int * | [optional] [default to 0] | |
Accept_Language | header_accept_language_e | [optional] | |
sFilter | char * | [optional] |
webhook_get_list_v1_response_t *
- Content-Type: Not defined
- Accept: application/json, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// Retrieve an existing Webhook
//
//
//
webhook_get_object_v2_response_t* ObjectWebhookAPI_webhookGetObjectV2(apiClient_t *apiClient, int *pkiWebhookID);
Name | Type | Description | Notes |
---|---|---|---|
apiClient | apiClient_t * | context containing the client configuration | |
pkiWebhookID | int * |
webhook_get_object_v2_response_t *
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// Regenerate the Apikey
//
//
//
webhook_regenerate_apikey_v1_response_t* ObjectWebhookAPI_webhookRegenerateApikeyV1(apiClient_t *apiClient, int *pkiWebhookID, webhook_regenerate_apikey_v1_request_t *webhook_regenerate_apikey_v1_request);
Name | Type | Description | Notes |
---|---|---|---|
apiClient | apiClient_t * | context containing the client configuration | |
pkiWebhookID | int * | ||
webhook_regenerate_apikey_v1_request | webhook_regenerate_apikey_v1_request_t * |
webhook_regenerate_apikey_v1_response_t *
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
// Test the Webhook by calling the Url
//
//
//
webhook_test_v1_response_t* ObjectWebhookAPI_webhookTestV1(apiClient_t *apiClient, int *pkiWebhookID, object_t *body);
Name | Type | Description | Notes |
---|---|---|---|
apiClient | apiClient_t * | context containing the client configuration | |
pkiWebhookID | int * | ||
body | object_t * |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]