Skip to content

Execute Contact Transfer

POST
/api/v1/transfer/execute
curl --request POST \
--url https://api.parasta.io/api/v1/transfer/execute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "transfer_id": "tf_xxxxx", "pin": "[encrypted]" }'

Execute P2P transfer to contact via DID.

Media type application/json
object
transfer_id
required

Transfer session ID

string
pin
required

Encrypted PIN

string
Example
{
"transfer_id": "tf_xxxxx",
"pin": "[encrypted]"
}

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"tx_id": "tx_abc123",
"status": "completed"
}
}