Logo
Fireblocks API Documentation

Fund ticket manually

PUT {{baseUrl}}/smart-transfers/:ticketId/fulfill

Manually fulfill ticket, in case when all terms (legs) are funded manually

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Idempotency-Key
string A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Accept
string




RESPONSES

status OK

{ "message": "<string>", "data": { "id": "<string>", "type": "ASYNC", "status": "PENDING_APPROVAL", "createdByNetworkId": "<string>", "createdByNetworkIdName": "<string>", "createdAt": "<dateTime>", "updatedAt": "<dateTime>", "direction": "SEND", "terms": [ { "id": "<string>", "ticketId": "<string>", "asset": "<string>", "amount": "<string>", "fromNetworkId": "<string>", "fromNetworkIdName": "<string>", "toNetworkId": "<string>", "toNetworkIdName": "<string>", "txHash": "<string>", "fbTxId": "<string>", "txStatus": "failed", "status": "FUNDING_FAILED", "createdAt": "<dateTime>", "updatedAt": "<dateTime>", "amountUsd": "<string>" }, { "id": "<string>", "ticketId": "<string>", "asset": "<string>", "amount": "<string>", "fromNetworkId": "<string>", "fromNetworkIdName": "<string>", "toNetworkId": "<string>", "toNetworkIdName": "<string>", "txHash": "<string>", "fbTxId": "<string>", "txStatus": "pendingAmlScreening", "status": "REJECTED", "createdAt": "<dateTime>", "updatedAt": "<dateTime>", "amountUsd": "<string>" } ], "expiresIn": "<number>", "expiresAt": "<dateTime>", "submittedAt": "<dateTime>", "expiredAt": "<dateTime>", "canceledAt": "<dateTime>", "fulfilledAt": "<dateTime>", "externalRefId": "<string>", "note": "<string>", "canceledByNetworkIdName": "<string>", "canceledByMe": "<boolean>", "createdByMe": "<boolean>" } }

Curl
curl -X PUT 'https://api.fireblocks.io/v1/smart-transfers/:ticketId/fulfill' -H 'Idempotency-Key: <string>' -H 'Accept: application/json'

ENDPOINTS