Retrieves the complete TRSupport policy for the authenticated tenant, including pre-screening rules, post-screening rules, and missing TRM rules. Pre-screening rules determine whether transactions should be screened. Post-screening rules determine actions based on screening results. Missing TRM rules handle cases when screening data is unavailable.
const response: Promise<FireblocksResponse<TRLinkPolicyResponse>> = fireblocks.tRLink.getTRLinkPolicy();{
"preScreeningRules": [
{
"action": "SCREEN",
"customerId": "cust_123abc",
"direction": "OUTBOUND",
"sourceType": "VAULT_ACCOUNT",
"sourceSubType": "<string>",
"sourceAddress": "0x1234567890abcdef1234567890abcdef12345678",
"destType": "EXTERNAL_WALLET",
"destSubType": "<string>",
"destAddress": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
"sourceId": "<string>",
"destId": "<string>",
"asset": "BTC",
"baseAsset": "<string>",
"amount": {
"range": {
"min": "1000",
"max": "100000"
},
"currency": "USD"
},
"networkProtocol": "BITCOIN",
"operation": "TRANSFER",
"description": "Screen large BTC outbound transactions to external wallets",
"isDefault": false
}
],
"postScreeningRules": [
{
"action": "ACCEPT",
"customerId": "cust_123abc",
"direction": "OUTBOUND",
"sourceType": "EXTERNAL_WALLET",
"sourceSubType": "<string>",
"sourceAddress": "0x9876543210fedcba9876543210fedcba98765432",
"destType": "VAULT_ACCOUNT",
"destSubType": "<string>",
"destAddress": "0x1234567890abcdef1234567890abcdef12345678",
"sourceId": "<string>",
"destId": "<string>",
"asset": "ETH",
"baseAsset": "<string>",
"amount": {
"range": {
"min": "1000",
"max": "100000"
},
"currency": "USD"
},
"networkProtocol": "ETHEREUM",
"operation": "TRANSFER",
"description": "Accept transactions with TRM approval after January 2024",
"isDefault": false,
"providerIdent": "trm-provider-1",
"trmStatus": "ACCEPTED",
"validBefore": 1735689600000,
"validAfter": 1704067200000
}
],
"missingTrmRules": [
{
"action": "WAIT",
"customerId": "cust_123abc",
"direction": "OUTBOUND",
"sourceType": "EXTERNAL_WALLET",
"sourceSubType": "<string>",
"sourceAddress": "0xabcdef1234567890abcdef1234567890abcdef12",
"destType": "VAULT_ACCOUNT",
"destSubType": "<string>",
"destAddress": "0x567890abcdef1234567890abcdef1234567890ab",
"sourceId": "<string>",
"destId": "<string>",
"asset": "BTC",
"baseAsset": "<string>",
"amount": {
"range": {
"min": "1000",
"max": "100000"
},
"currency": "USD"
},
"networkProtocol": "BITCOIN",
"operation": "TRANSFER",
"description": "Wait for TRM screening on inbound transactions",
"isDefault": false,
"validBefore": 1735689600000,
"validAfter": 1704067200000
}
]
}Documentation Index
Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt
Use this file to discover all available pages before exploring further.
Policy retrieved successfully
TRLink policy response containing pre-screening, post-screening, and missing TRM rules
Pre-screening rules that determine whether transactions should be screened
Show child attributes
Post-screening rules that determine actions based on screening results
Show child attributes
Rules for handling transactions when TRM screening data is unavailable
Show child attributes
Was this page helpful?
const response: Promise<FireblocksResponse<TRLinkPolicyResponse>> = fireblocks.tRLink.getTRLinkPolicy();{
"preScreeningRules": [
{
"action": "SCREEN",
"customerId": "cust_123abc",
"direction": "OUTBOUND",
"sourceType": "VAULT_ACCOUNT",
"sourceSubType": "<string>",
"sourceAddress": "0x1234567890abcdef1234567890abcdef12345678",
"destType": "EXTERNAL_WALLET",
"destSubType": "<string>",
"destAddress": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
"sourceId": "<string>",
"destId": "<string>",
"asset": "BTC",
"baseAsset": "<string>",
"amount": {
"range": {
"min": "1000",
"max": "100000"
},
"currency": "USD"
},
"networkProtocol": "BITCOIN",
"operation": "TRANSFER",
"description": "Screen large BTC outbound transactions to external wallets",
"isDefault": false
}
],
"postScreeningRules": [
{
"action": "ACCEPT",
"customerId": "cust_123abc",
"direction": "OUTBOUND",
"sourceType": "EXTERNAL_WALLET",
"sourceSubType": "<string>",
"sourceAddress": "0x9876543210fedcba9876543210fedcba98765432",
"destType": "VAULT_ACCOUNT",
"destSubType": "<string>",
"destAddress": "0x1234567890abcdef1234567890abcdef12345678",
"sourceId": "<string>",
"destId": "<string>",
"asset": "ETH",
"baseAsset": "<string>",
"amount": {
"range": {
"min": "1000",
"max": "100000"
},
"currency": "USD"
},
"networkProtocol": "ETHEREUM",
"operation": "TRANSFER",
"description": "Accept transactions with TRM approval after January 2024",
"isDefault": false,
"providerIdent": "trm-provider-1",
"trmStatus": "ACCEPTED",
"validBefore": 1735689600000,
"validAfter": 1704067200000
}
],
"missingTrmRules": [
{
"action": "WAIT",
"customerId": "cust_123abc",
"direction": "OUTBOUND",
"sourceType": "EXTERNAL_WALLET",
"sourceSubType": "<string>",
"sourceAddress": "0xabcdef1234567890abcdef1234567890abcdef12",
"destType": "VAULT_ACCOUNT",
"destSubType": "<string>",
"destAddress": "0x567890abcdef1234567890abcdef1234567890ab",
"sourceId": "<string>",
"destId": "<string>",
"asset": "BTC",
"baseAsset": "<string>",
"amount": {
"range": {
"min": "1000",
"max": "100000"
},
"currency": "USD"
},
"networkProtocol": "BITCOIN",
"operation": "TRANSFER",
"description": "Wait for TRM screening on inbound transactions",
"isDefault": false,
"validBefore": 1735689600000,
"validAfter": 1704067200000
}
]
}