Skip to main content
POST
/
customers
/
me
/
transfer
Create Customer Transfer
curl --request POST \
  --url https://api.{your-broker}.slate-labs.com/customers/me/transfer \
  --header 'Content-Type: application/json' \
  --data '
{
  "from_login": "<string>",
  "to_login": "<string>",
  "amount": 5000000
}
'
{
  "transfer_out_id": "<string>",
  "transfer_in_id": "<string>",
  "from_login": "<string>",
  "to_login": "<string>",
  "amount": 123,
  "from_currency": "<string>",
  "to_currency": "<string>",
  "converted_amount": 123,
  "status": "<string>",
  "source": "<string>",
  "effective_rate": 123
}

Body

application/json

Customer self-service transfer.

from_login
string
required
to_login
string
required
amount
required
Required range: 0 < x <= 10000000

Response

Successful Response

transfer_out_id
string
required
transfer_in_id
string
required
from_login
string
required
to_login
string
required
amount
number
required
from_currency
string
required
to_currency
string
required
converted_amount
number
required
status
string
required
source
string
required
effective_rate
number | null