Skip to main content
POST
/
merchant
/
metric
/
carryover
/
reprocess
Reprocess Metric Carry Over (Admin Tool)
curl --request POST \
  --url https://api.unibee.dev/merchant/metric/carryover/reprocess \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "previousInvoiceId": "<string>"
}
'
{
  "code": 123,
  "data": {
    "message": "<string>",
    "success": true
  },
  "merchantId": 123,
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
previousInvoiceId
string<string>
required

Previous period's Invoice ID to recalculate carry over

Response

200 - application/json
code
integer<int>
data
object
merchantId
integer<int64>
message
string<string>
redirect
string<string>
requestId
string<string>