Skip to main content
POST
/
transactions
/
transfer
Create Crm Transfer
curl --request POST \
  --url https://api.{your-broker}.slate-labs.com/transactions/transfer \
  --header 'Content-Type: application/json' \
  --data '
{
  "from_login": "<string>",
  "to_login": "<string>",
  "amount": 5000000,
  "note": "<string>"
}
'
{
  "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

CRM-initiated inter-account transfer.

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

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