Get the active draft
GET {{baseUrl}}/tap/draft
Returns the active draft and its validation.
Note: These endpoints are currently in beta and might be subject to changes.
If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"draftResponse": {
"draftId": "<string>",
"status": "<string>",
"rules": [
{
"type": "TRANSFER",
"action": "BLOCK",
"asset": "<string>",
"amountCurrency": "USD",
"amountScope": "SINGLE_TX",
"amount": "<string>",
"periodSec": "<number>",
"operator": "<string>",
"operators": {
"wildcard": "*",
"users": [
"<string>",
"<string>"
],
"usersGroups": [
"<string>",
"<string>"
],
"services": [
"<string>",
"<string>"
]
},
"transactionType": "SUPPLY",
"designatedSigner": "<string>",
"designatedSigners": {
"users": [
"<string>",
"<string>"
],
"usersGroups": [
"<string>",
"<string>"
]
},
"srcType": "FIAT_ACCOUNT",
"srcSubType": "EXTERNAL",
"srcId": "<string>",
"src": {
"ids": [
[
"<string>"
],
[
"<string>"
]
]
},
"dstType": "UNMANAGED",
"dstSubType": "INTERNAL",
"dstId": "<string>",
"dst": {
"ids": [
[
"<string>"
],
[
"<string>"
]
]
},
"dstAddressType": "ONE_TIME",
"authorizers": [
"<string>",
"<string>"
],
"authorizersCount": "<number>",
"authorizationGroups": {
"logic": "AND",
"allowOperatorAsAuthorizer": "<boolean>",
"groups": [
{
"users": [
"<string>",
"<string>"
],
"usersGroups": [
"<string>",
"<string>"
],
"th": "<number>"
},
{
"users": [
"<string>",
"<string>"
],
"usersGroups": [
"<string>",
"<string>"
],
"th": "<number>"
}
]
},
"amountAggregation": {
"operators": "PER_SINGLE_MATCH",
"srcTransferPeers": "ACROSS_ALL_MATCHES",
"dstTransferPeers": "PER_SINGLE_MATCH"
},
"rawMessageSigning": {
"algorithm": "<string>",
"derivationPath": {
"path": [
"<number>",
"<number>"
]
}
},
"applyForApprove": "<boolean>",
"applyForTypedMessage": "<boolean>",
"externalDescr Curl curl -X GET 'https://api.fireblocks.io/v1/tap/draft' -H 'Accept: application/json' ENDPOINTS |