curl --location --request GET'https://oauth.casso.vn/v2/webhooks/134' \--header 'Authorization: Bearer <"Access token nhận được từ OAuth 2.0 của Casso">'
curl --location --request DELETE'https://oauth.casso.vn/v2/webhooks/85' \--header 'Authorization: Bearer <"Access token nhận được từ OAuth 2.0 của Casso">'
$curl =curl_init();curl_setopt_array($curl, array( CURLOPT_URL =>"https://oauth.casso.vn/v2/webhooks/85", CURLOPT_RETURNTRANSFER =>true, CURLOPT_TIMEOUT =>30, CURLOPT_CUSTOMREQUEST =>"DELETE", CURLOPT_HTTPHEADER => array("Authorization: Apikey <"API Key của bạn"> hoặc Bearer <"access token từ OAuth2">","Content-Type: application/json" ),));$response =curl_exec($curl);$err =curl_error($curl);curl_close($curl);
OkHttpClient client =newOkHttpClient();Request request =new Request.Builder().url("https://oauth.casso.vn/v2/webhooks/85").delete().addHeader("Content-Type","application/json").addHeader("Authorization","Apikey <"APIKey của bạn"> hoặc Bearer <"access token từ OAuth2">").build();Response response =client.newCall(request).execute();
Xoá tất cả webhook trong đường dẫn
DELETEhttps://oauth.casso.vn/v2/webhooks
Xóa tất cả các webhook đang tồn tại trong doanh nghiệp của bạn trên Casso tương ứng với giá trị webhook mà bạn yêu cầu.
Query Parameters
Name
Type
Description
webhook
string
Đường dẫn(endpoint/API) nhận event(phát sinh giao dịch mới) từ Casso
Headers
Name
Type
Description
Authorization
string
Bearer <"access token từ OAuth2">hoặcApikey <"API key của bạn">
{
"error": 12,
"message": "Webhook not exists",
"data": null
}
Ví dụ:
curl --location --request DELETE'https://oauth.casso.vn/v2/webhooks?webhook=https://websitecuaban.com/api/webhook' \--header 'Authorization: Bearer <"Access token nhận được từ OAuth 2.0 của Casso">'
$curl =curl_init();curl_setopt_array($curl, array( CURLOPT_URL =>"https://oauth.casso.vn/v2/webhooks?webhook=https://websitecuaban.com/api/webhook", CURLOPT_RETURNTRANSFER =>true, CURLOPT_TIMEOUT =>30, CURLOPT_CUSTOMREQUEST =>"DELETE", CURLOPT_HTTPHEADER => array("Authorization: Apikey <"API Key của bạn"> hoặc Bearer <"access token từ OAuth2">","Content-Type: application/json" ),));$response =curl_exec($curl);$err =curl_error($curl);curl_close($curl);
OkHttpClient client =newOkHttpClient();Request request =new Request.Builder().url("https://oauth.casso.vn/v2/webhooks?webhook=https://websitecuaban.com/api/webhook").delete().addHeader("Content-Type","application/json").addHeader("Authorization","Apikey <"APIKey của bạn"> hoặc Bearer <"access token từ OAuth2">").build();Response response =client.newCall(request).execute();
Lưu ý: Khi bạn gọi API có thể sẽ xóa đi những webhook cũ mà bạn đã thiết lập trên hệ thống của Casso. Cân nhắc trước khi dùng tới API này.