curl --request POST \
--url https://api.unibee.dev/merchant/metric/limit_adjust \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": 123,
"metricCode": "<string>",
"reason": "<string>",
"productId": 123,
"subscriptionId": "<string>",
"userId": 123
}
'{
"code": 123,
"data": {
"success": true
},
"merchantId": 123,
"message": "<string>",
"redirect": "<string>",
"requestId": "<string>"
}curl --request POST \
--url https://api.unibee.dev/merchant/metric/limit_adjust \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": 123,
"metricCode": "<string>",
"reason": "<string>",
"productId": 123,
"subscriptionId": "<string>",
"userId": 123
}
'{
"code": 123,
"data": {
"success": true
},
"merchantId": 123,
"message": "<string>",
"redirect": "<string>",
"requestId": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Adjustment amount (positive to increase, negative to decrease, cannot be 0)
Metric Code
Reason for adjustment
Product ID, default 0 for default product
Subscription ID (priority, use this if you know the subscription)
User ID (alternative to subscriptionId)