Skip to main content
POST
/
api
/
v0
/
bringin-link
/
confirm
Confirm connection
curl --request POST \
  --url https://dev.bringin.xyz/api/v0/bringin-link/confirm \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "challengeId": "<string>",
  "verificationCode": "<string>"
}
'
{
  "standingOrder": {
    "id": "so_abc123",
    "status": "ACTIVE",
    "direction": "FIAT_TO_CRYPTO",
    "sourceCurrency": "EUR",
    "destinationCurrency": "BTC"
  }
}
Confirm a pending connection with the SMS OTP code. Get the challengeId from GET /bringin-link/{id}. Requires a per-user api-key.
challengeId
string
required
The challenge ID from the standing order
verificationCode
string
required
SMS OTP code sent to the user’s registered phone
{
  "standingOrder": {
    "id": "so_abc123",
    "status": "ACTIVE",
    "direction": "FIAT_TO_CRYPTO",
    "sourceCurrency": "EUR",
    "destinationCurrency": "BTC"
  }
}
After confirmation, the connection moves to ACTIVE and auto-conversions begin.