GET /billinggroup/recalculation/{month}?vendor={vendor} HTTP1.1
Authorization: Bearer {token}
HTTP 200
[
{
"customer_id":"012345678912",
"customer_name":"customer1",
"company_id":"company1",
"billinggroup_id":"billing1",
"billinggroup_name":"billing1",
"project_code":null,
"id": "recalculationid1",
"calc_type":"Fee",
"mobingi_type":"REGISTRAR",
"description":"[OP-n4GB] Renewal",
"product_name":"Amazon Registrar",
"account_id":"012345678912",
"currency_code":"USD",
"product_code":"AmazonRegistrar",
"unblended_cost":"90.0000000000",
"time_interval":"2020-05-27T15:00:00Z\/2021-05-26T15:00:01Z",
"usage_start":"2020-05-27T15:00:00Z",
"apply":false,
"exchange_rate":null,
"tax_free":false,
"vendor":"aws"
},
...
]
POST /billinggroup/recalculation HTTP1.1
Authorization: Bearer {token}
Content-Type: application/json
{request body}
{
"data": [
"recalculationid1",
"recalculationid2",
"recalculationid3"
],
"month": "2021-01",
"exchange_rate":104.02,
"tax_free":true,
"apply":true,
"vendor":"aws"
}
HTTP 200
{"status":"success"}