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.
{
"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.
Name
Type
Description
Name
Type
Description
Name
Type
Description
Name
Type
Description
Name
Type
Description
Name
Type
Description
Name
Type
Description
Name
Type
Description
Name
Type
Description
Authorization
string
Bearer <"access token từ OAuth2">hoặcApikey <"API key của bạn">
income_only
boolean
Giá trị được thiết lập để gửi bắn sự kiện tới webhook đối với giao dịch tiền vào
secure_token
string
Mã bảo mật để mỗi lần gửi Event từ Casso sẽ được đính kèm trên header.
webhook
string
Đường dẫn(endpoint/API) nhận event(phát sinh giao dịch mới) từ Casso
id
string
id webhook bạn muốn xem chi tiết
Authorization
string
Bearer <"access token từ Oauth2">hoặcApikey <"API key của bạn">
id
string
id webhook
Authorization
string
Bearer <"access token từ OAuth2">hoặc Apikey <"API key của bạn">
income_only
boolean
Xác nhận gửi webhook đối với tiền vào
secure_token
string
mã bảo mật
webhook
string
Đường dẫn(endpoint/API) nhận event(phát sinh giao dịch mới) từ Casso
id
string
id webhook
Authorization
string
Bearer <"access token từ OAuth2">hoặcApikey <"API key của bạn">
webhook
string
Đường dẫn(endpoint/API) nhận event(phát sinh giao dịch mới) từ Casso
Authorization
string
Bearer <"access token từ OAuth2">hoặcApikey <"API key của bạn">