Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://api.unibee.top/merchant/subscription/config \
--header 'Authorization: Bearer <token>'
{
"code": 123,
"data": {
"config": {
"downgradeEffectImmediately": true,
"fiatExchangeApiKey": "<string>",
"gatewayVATRule": "<string>",
"incompleteExpireTime": 123,
"invoiceEmail": true,
"invoicePdfGenerate": true,
"showZeroInvoice": true,
"tryAutomaticPaymentBeforePeriodEnd": 123,
"upgradeProration": true
}
},
"message": "<string>",
"redirect": "<string>",
"requestId": "<string>"
}
curl --request GET \
--url https://api.unibee.top/merchant/subscription/config \
--header 'Authorization: Bearer <token>'
{
"code": 123,
"data": {
"config": {
"downgradeEffectImmediately": true,
"fiatExchangeApiKey": "<string>",
"gatewayVATRule": "<string>",
"incompleteExpireTime": 123,
"invoiceEmail": true,
"invoicePdfGenerate": true,
"showZeroInvoice": true,
"tryAutomaticPaymentBeforePeriodEnd": 123,
"upgradeProration": true
}
},
"message": "<string>",
"redirect": "<string>",
"requestId": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.