Skip to content

Execute Charge

POST
/api/v1/charge/execute
curl --request POST \
--url https://api.parasta.io/api/v1/charge/execute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "source": "KB Kookmin", "amount": "500000", "currency": "KRW" }'

Charge (deposit) funds from connected source to Link Bank.

Media type application/json
object
source
required

Source institution name

string
amount
required

Charge amount

string
currency
required

Currency code

string
Example
{
"source": "KB Kookmin",
"amount": "500000",
"currency": "KRW"
}

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"charge_id": "ch_xxx",
"status": "processing"
}
}