Logo
Fireblocks API Documentation

Add external ref. ID

PUT {{baseUrl}}/smart-transfers/:ticketId/external-id

Set external id Smart Transfer ticket

 

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.
Content-Type
string
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>
Curl
curl -X PUT 'https://api.fireblocks.io/v1/smart-transfers/:ticketId/external-id' -H 'Idempotency-Key: <string>' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"externalRefId":"\u003cstring\u003e"}'

ENDPOINTS