curl --location --request POST 'https://vf-solana-api.dev.alphaledger.com/api/v1/positions/transfer-sol?solanaClusterId=SOLANA_DEVNET' \
--header 'x-request-id: f9860f73-a466-41f2-a083-34eeb1cc3a3c' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '// offchainReferences -> onchainId (on-platform)
{
"itemData": {
// if you know the amount in lamports, use the lamports field and remmove the sol field
// "lamports": 170000,
"sol": 0.00017,
// uncomment the memo field if you want a memo added to the txn
// "memo": "Transfer some SOL for testing",
"source": {
"offchainReferences": {
"code": "xyz-global-fee-payer",
"type": "WALLET",
"organizationExternalId": "XYZ"
}
},
"destination": {
"onchainId": "DELkrQ6gZg8eHMzNtwB8YAcswVvzGMQ3QoFkUYBriWYJ"
}
}
}'