Deactivate Status

GET https://api.e-guma.ch/v1/depot_vouchers/{code}/deactivate_status.json?apikey={api-key}

Parameters

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.
api-key
required

Return

codeThe same voucher code as you provided as parameter
can_be_deactivatedIf the voucher is sold and can be deactivated it is equal true.
amount_in_centsThe value of the voucher when activated
messageIf the voucher can not be deactivated, the message contains the reason. The message is returned in the client's default language.

Example

GET https://api.e-guma.ch/v1/depot_vouchers/CDHE2JNT5LS9/deactivate_status.json?apikey=510e32c594d84816a4af9df1
{
  "code":"CDHE2JNT5LS9",
  "can_be_deactivated":true,
  "amount_in_cents":5000,
  "message":""
}