Skip to content

Charge Status

GET
/api/v1/charge/{charge_id}/status
curl --request GET \
--url https://api.parasta.io/api/v1/charge/example/status \
--header 'Authorization: Bearer <token>'

Check the status of a pending charge operation.

charge_id
required
string

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"charge_id": "ch_xxx",
"status": "completed",
"amount": "500000",
"currency": "KRW"
}
}