Charge Status
GET https://api.e-guma.ch/v1/vouchers/{code}/charge_status.json?apikey={api-key}Parameters
| Attribute | Description |
|---|---|
code required | The alphanumeric code of the voucher. The code has 12 characters. You can pass the code with (e.g. ABCD-ABCD-ABCD) or without (e.g. ABCDABCDABCD) dashes. Please use url_encode for the code as it might contain special characters. |
api-key required |
Return
| code | The same voucher code as you provided as parameter |
| balance_in_cents | The current balance of the voucher in cents |
| can_be_charged | True if the voucher can be charged, otherwise false |
| message | Message why the voucher can't be charged |
Example
GET https://api.e-guma.ch/v1/vouchers/JWCPP7QV25S4/charge_status.json?apikey=510e32c594d84816a4af9df1{
"code":"JWCPP7QV25S4",
"balance_in_cents": 10000,
"can_be_charged": true,
"message": ""
}Updated 9 months ago
