Webhooks Logs
curl --request GET \
--url https://api.blockradar.co/v1/wallets/{walletId}/webhooks \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockradar.co/v1/wallets/{walletId}/webhooks"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockradar.co/v1/wallets/{walletId}/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.blockradar.co/v1/wallets/{walletId}/webhooks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.blockradar.co/v1/wallets/{walletId}/webhooks"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.blockradar.co/v1/wallets/{walletId}/webhooks")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockradar.co/v1/wallets/{walletId}/webhooks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"attempts": 2,
"createdAt": "2024-07-24T02:51:04.316Z",
"event": "withdraw.success",
"id": "ad83cf3a-ed14-4d02-aa1e-6349137a4067",
"payload": {
"address": null,
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x984eae8712e72b9221307acc92470b3bf3ea350ae6c10abc8069ff9c95ea2c37",
"blockNumber": 6365312,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:51:03.541Z",
"currency": "USD",
"gasFee": "0.000001766085518659",
"gasPrice": "39205397",
"gasUsed": "45047",
"hash": "0x96297a97ca20a7fd0e23516af9bc5049d6512c7e27e82a58399a59f1f6668e06",
"id": "6f1b03d3-5f8b-4424-ae77-10f7f866d520",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "TSZiRYfUQ3",
"senderAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"status": "SUCCESS",
"type": "WITHDRAW",
"updatedAt": "2024-07-24T02:51:03.541Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "6f1b03d3-5f8b-4424-ae77-10f7f866d520",
"response": {
"status": 404,
"text": "Not Found"
},
"status": "failed",
"updatedAt": "2024-07-24T11:57:58.700Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa5810"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:49:26.806Z",
"event": "withdraw.success",
"id": "497ff73f-7e56-4f88-9992-ebeea80d517c",
"payload": {
"address": null,
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x6c65ee04dce483dcd348eadfafdd700dc49c6cb71305f7481ebf3d8d8d011dc2",
"blockNumber": 6365304,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:49:25.994Z",
"currency": "USD",
"gasFee": "0.000001766085068189",
"gasPrice": "39205387",
"gasUsed": "45047",
"hash": "0x6af373c76a5d29c7d4d50fb6c7cd5dc236ca71df8d5a6872c5035e8cc541a62a",
"id": "13a94086-0272-4488-a16e-37bd5ff59640",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "k11VaCaNMt",
"senderAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"status": "SUCCESS",
"type": "WITHDRAW",
"updatedAt": "2024-07-24T02:49:25.994Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "13a94086-0272-4488-a16e-37bd5ff59640",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.697Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:45:02.280Z",
"event": "deposit.swept.success",
"id": "f0f9d0f8-8c5f-482e-81e7-26226daa2f61",
"payload": {
"address": {
"address": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-07-23T15:21:51.889Z",
"derivationPath": "m/44'/60'/0'/0/53",
"id": "f8dcb5e5-6e59-4aaa-878d-fdc897280b8e",
"isActive": true,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-07-23T15:21:51.889Z"
},
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1.1",
"amountPaid": "1.1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": true,
"assetSweptAmount": "1.1",
"assetSweptAt": "2024-07-24T02:45:01.469Z",
"assetSweptGasFee": "0.000001578369916787",
"assetSweptHash": "0x368a0bb89c0a02a62783c2c2258d29adadf55d355ccdb8372f2ad6b32f8d0129",
"assetSweptRecipientAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"assetSweptSenderAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"blockHash": "0x25fdd3dbf577455f630f127cf25ba384cbd41ef0cc90faaf3284f99aa94689cd",
"blockNumber": 6365284,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:44:37.838Z",
"currency": "USD",
"gasFee": "0.000093238503978176",
"gasPrice": "1500000064",
"gasUsed": "62159",
"hash": "0xe24634053968ac1dd389531365089584469cf313780b6308a60089657bf9e030",
"id": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"metadata": null,
"network": "testnet",
"note": null,
"reason": "Funds swept successfully",
"recipientAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"reference": "OgcJOe592w",
"senderAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"status": "SUCCESS",
"type": "DEPOSIT",
"updatedAt": "2024-07-24T02:45:01.523Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.694Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:44:38.615Z",
"event": "deposit.success",
"id": "14c3dc94-1dad-4a66-bc53-d0835471eb6f",
"payload": {
"address": {
"address": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-07-23T15:21:51.889Z",
"derivationPath": "m/44'/60'/0'/0/53",
"id": "f8dcb5e5-6e59-4aaa-878d-fdc897280b8e",
"isActive": true,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-07-23T15:21:51.889Z"
},
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1.1",
"amountPaid": "1.1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x25fdd3dbf577455f630f127cf25ba384cbd41ef0cc90faaf3284f99aa94689cd",
"blockNumber": 6365284,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:44:37.838Z",
"currency": "USD",
"gasFee": "0.000093238503978176",
"gasPrice": "1500000064",
"gasUsed": "62159",
"hash": "0xe24634053968ac1dd389531365089584469cf313780b6308a60089657bf9e030",
"id": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"reference": "OgcJOe592w",
"senderAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"status": "SUCCESS",
"type": "DEPOSIT",
"updatedAt": "2024-07-24T02:44:37.838Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.691Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
}
],
"message": "Webhooks fetched successfully",
"meta": {
"currentPage": 2,
"itemCount": 10,
"itemsPerPage": 10,
"totalItems": 99,
"totalPages": 10
},
"statusCode": 200
}Master Wallet
Webhooks Logs
This endpoint retrieves the webhooks associated with a specific wallet
GET
/
v1
/
wallets
/
{walletId}
/
webhooks
Webhooks Logs
curl --request GET \
--url https://api.blockradar.co/v1/wallets/{walletId}/webhooks \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockradar.co/v1/wallets/{walletId}/webhooks"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockradar.co/v1/wallets/{walletId}/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.blockradar.co/v1/wallets/{walletId}/webhooks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.blockradar.co/v1/wallets/{walletId}/webhooks"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.blockradar.co/v1/wallets/{walletId}/webhooks")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockradar.co/v1/wallets/{walletId}/webhooks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"attempts": 2,
"createdAt": "2024-07-24T02:51:04.316Z",
"event": "withdraw.success",
"id": "ad83cf3a-ed14-4d02-aa1e-6349137a4067",
"payload": {
"address": null,
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x984eae8712e72b9221307acc92470b3bf3ea350ae6c10abc8069ff9c95ea2c37",
"blockNumber": 6365312,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:51:03.541Z",
"currency": "USD",
"gasFee": "0.000001766085518659",
"gasPrice": "39205397",
"gasUsed": "45047",
"hash": "0x96297a97ca20a7fd0e23516af9bc5049d6512c7e27e82a58399a59f1f6668e06",
"id": "6f1b03d3-5f8b-4424-ae77-10f7f866d520",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "TSZiRYfUQ3",
"senderAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"status": "SUCCESS",
"type": "WITHDRAW",
"updatedAt": "2024-07-24T02:51:03.541Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "6f1b03d3-5f8b-4424-ae77-10f7f866d520",
"response": {
"status": 404,
"text": "Not Found"
},
"status": "failed",
"updatedAt": "2024-07-24T11:57:58.700Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa5810"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:49:26.806Z",
"event": "withdraw.success",
"id": "497ff73f-7e56-4f88-9992-ebeea80d517c",
"payload": {
"address": null,
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x6c65ee04dce483dcd348eadfafdd700dc49c6cb71305f7481ebf3d8d8d011dc2",
"blockNumber": 6365304,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:49:25.994Z",
"currency": "USD",
"gasFee": "0.000001766085068189",
"gasPrice": "39205387",
"gasUsed": "45047",
"hash": "0x6af373c76a5d29c7d4d50fb6c7cd5dc236ca71df8d5a6872c5035e8cc541a62a",
"id": "13a94086-0272-4488-a16e-37bd5ff59640",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "k11VaCaNMt",
"senderAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"status": "SUCCESS",
"type": "WITHDRAW",
"updatedAt": "2024-07-24T02:49:25.994Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "13a94086-0272-4488-a16e-37bd5ff59640",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.697Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:45:02.280Z",
"event": "deposit.swept.success",
"id": "f0f9d0f8-8c5f-482e-81e7-26226daa2f61",
"payload": {
"address": {
"address": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-07-23T15:21:51.889Z",
"derivationPath": "m/44'/60'/0'/0/53",
"id": "f8dcb5e5-6e59-4aaa-878d-fdc897280b8e",
"isActive": true,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-07-23T15:21:51.889Z"
},
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1.1",
"amountPaid": "1.1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": true,
"assetSweptAmount": "1.1",
"assetSweptAt": "2024-07-24T02:45:01.469Z",
"assetSweptGasFee": "0.000001578369916787",
"assetSweptHash": "0x368a0bb89c0a02a62783c2c2258d29adadf55d355ccdb8372f2ad6b32f8d0129",
"assetSweptRecipientAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"assetSweptSenderAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"blockHash": "0x25fdd3dbf577455f630f127cf25ba384cbd41ef0cc90faaf3284f99aa94689cd",
"blockNumber": 6365284,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:44:37.838Z",
"currency": "USD",
"gasFee": "0.000093238503978176",
"gasPrice": "1500000064",
"gasUsed": "62159",
"hash": "0xe24634053968ac1dd389531365089584469cf313780b6308a60089657bf9e030",
"id": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"metadata": null,
"network": "testnet",
"note": null,
"reason": "Funds swept successfully",
"recipientAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"reference": "OgcJOe592w",
"senderAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"status": "SUCCESS",
"type": "DEPOSIT",
"updatedAt": "2024-07-24T02:45:01.523Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.694Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:44:38.615Z",
"event": "deposit.success",
"id": "14c3dc94-1dad-4a66-bc53-d0835471eb6f",
"payload": {
"address": {
"address": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-07-23T15:21:51.889Z",
"derivationPath": "m/44'/60'/0'/0/53",
"id": "f8dcb5e5-6e59-4aaa-878d-fdc897280b8e",
"isActive": true,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-07-23T15:21:51.889Z"
},
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1.1",
"amountPaid": "1.1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x25fdd3dbf577455f630f127cf25ba384cbd41ef0cc90faaf3284f99aa94689cd",
"blockNumber": 6365284,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:44:37.838Z",
"currency": "USD",
"gasFee": "0.000093238503978176",
"gasPrice": "1500000064",
"gasUsed": "62159",
"hash": "0xe24634053968ac1dd389531365089584469cf313780b6308a60089657bf9e030",
"id": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"reference": "OgcJOe592w",
"senderAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"status": "SUCCESS",
"type": "DEPOSIT",
"updatedAt": "2024-07-24T02:44:37.838Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.691Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
}
],
"message": "Webhooks fetched successfully",
"meta": {
"currentPage": 2,
"itemCount": 10,
"itemsPerPage": 10,
"totalItems": 99,
"totalPages": 10
},
"statusCode": 200
}Autorisations
Paramètres de chemin
Exemple:
"YOUR_WALLET_ID"
Réponse
200 - application/json
200
Show child attributes
Show child attributes
Exemple:
[
{
"attempts": 2,
"createdAt": "2024-07-24T02:51:04.316Z",
"event": "withdraw.success",
"id": "ad83cf3a-ed14-4d02-aa1e-6349137a4067",
"payload": {
"address": null,
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x984eae8712e72b9221307acc92470b3bf3ea350ae6c10abc8069ff9c95ea2c37",
"blockNumber": 6365312,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:51:03.541Z",
"currency": "USD",
"gasFee": "0.000001766085518659",
"gasPrice": "39205397",
"gasUsed": "45047",
"hash": "0x96297a97ca20a7fd0e23516af9bc5049d6512c7e27e82a58399a59f1f6668e06",
"id": "6f1b03d3-5f8b-4424-ae77-10f7f866d520",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "TSZiRYfUQ3",
"senderAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"status": "SUCCESS",
"type": "WITHDRAW",
"updatedAt": "2024-07-24T02:51:03.541Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "6f1b03d3-5f8b-4424-ae77-10f7f866d520",
"response": { "status": 404, "text": "Not Found" },
"status": "failed",
"updatedAt": "2024-07-24T11:57:58.700Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa5810"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:49:26.806Z",
"event": "withdraw.success",
"id": "497ff73f-7e56-4f88-9992-ebeea80d517c",
"payload": {
"address": null,
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x6c65ee04dce483dcd348eadfafdd700dc49c6cb71305f7481ebf3d8d8d011dc2",
"blockNumber": 6365304,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:49:25.994Z",
"currency": "USD",
"gasFee": "0.000001766085068189",
"gasPrice": "39205387",
"gasUsed": "45047",
"hash": "0x6af373c76a5d29c7d4d50fb6c7cd5dc236ca71df8d5a6872c5035e8cc541a62a",
"id": "13a94086-0272-4488-a16e-37bd5ff59640",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "k11VaCaNMt",
"senderAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"status": "SUCCESS",
"type": "WITHDRAW",
"updatedAt": "2024-07-24T02:49:25.994Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "13a94086-0272-4488-a16e-37bd5ff59640",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.697Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:45:02.280Z",
"event": "deposit.swept.success",
"id": "f0f9d0f8-8c5f-482e-81e7-26226daa2f61",
"payload": {
"address": {
"address": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-07-23T15:21:51.889Z",
"derivationPath": "m/44'/60'/0'/0/53",
"id": "f8dcb5e5-6e59-4aaa-878d-fdc897280b8e",
"isActive": true,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-07-23T15:21:51.889Z"
},
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1.1",
"amountPaid": "1.1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": true,
"assetSweptAmount": "1.1",
"assetSweptAt": "2024-07-24T02:45:01.469Z",
"assetSweptGasFee": "0.000001578369916787",
"assetSweptHash": "0x368a0bb89c0a02a62783c2c2258d29adadf55d355ccdb8372f2ad6b32f8d0129",
"assetSweptRecipientAddress": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"assetSweptSenderAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"blockHash": "0x25fdd3dbf577455f630f127cf25ba384cbd41ef0cc90faaf3284f99aa94689cd",
"blockNumber": 6365284,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:44:37.838Z",
"currency": "USD",
"gasFee": "0.000093238503978176",
"gasPrice": "1500000064",
"gasUsed": "62159",
"hash": "0xe24634053968ac1dd389531365089584469cf313780b6308a60089657bf9e030",
"id": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"metadata": null,
"network": "testnet",
"note": null,
"reason": "Funds swept successfully",
"recipientAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"reference": "OgcJOe592w",
"senderAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"status": "SUCCESS",
"type": "DEPOSIT",
"updatedAt": "2024-07-24T02:45:01.523Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.694Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
},
{
"attempts": 1,
"createdAt": "2024-07-24T02:44:38.615Z",
"event": "deposit.success",
"id": "14c3dc94-1dad-4a66-bc53-d0835471eb6f",
"payload": {
"address": {
"address": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-07-23T15:21:51.889Z",
"derivationPath": "m/44'/60'/0'/0/53",
"id": "f8dcb5e5-6e59-4aaa-878d-fdc897280b8e",
"isActive": true,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-07-23T15:21:51.889Z"
},
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"amount": "1.1",
"amountPaid": "1.1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T11:53:33.682Z",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2024-06-14T22:32:12.589Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x25fdd3dbf577455f630f127cf25ba384cbd41ef0cc90faaf3284f99aa94689cd",
"blockNumber": 6365284,
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"confirmations": 1,
"confirmed": true,
"createdAt": "2024-07-24T02:44:37.838Z",
"currency": "USD",
"gasFee": "0.000093238503978176",
"gasPrice": "1500000064",
"gasUsed": "62159",
"hash": "0xe24634053968ac1dd389531365089584469cf313780b6308a60089657bf9e030",
"id": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"metadata": null,
"network": "testnet",
"note": null,
"reason": null,
"recipientAddress": "0x65A9869D1b0d404FaBc77832d692E1A104C3ad5A",
"reference": "OgcJOe592w",
"senderAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"status": "SUCCESS",
"type": "DEPOSIT",
"updatedAt": "2024-07-24T02:44:37.838Z",
"wallet": {
"address": "0x49A204B430F6948847e20846A8d9Bbee5eE04D2A",
"business": {
"createdAt": "2024-05-15T06:01:53.045Z",
"id": "7c323cfb-c1b6-4a3e-b72d-7433870812ac",
"name": "Blockradar Inc",
"sector": "infrastructure",
"status": "ACTIVE",
"updatedAt": "2024-07-10T17:09:47.057Z"
},
"createdAt": "2024-05-15T06:09:24.777Z",
"derivationPath": "m/44'/60'/0'/0/1",
"description": "Yooooo",
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"isActive": true,
"name": "updated wallet yeah",
"network": "testnet",
"updatedAt": "2024-06-07T09:45:35.631Z"
}
},
"reference": "ec2cbc6f-8a08-449c-8315-51b3b08c6a99",
"response": "Ok",
"status": "success",
"updatedAt": "2024-07-24T11:57:58.691Z",
"url": "https://webhook.site/016fd8b4-6eba-485d-8c83-8a18f0fa58b2"
}
]
Exemple:
"Webhooks fetched successfully"
Show child attributes
Show child attributes
Exemple:
200
⌘I

