/v2/api/entity base and authenticated with a Bearer token. The request body is a flat JSON object; any unknown key is ignored.credit_charge_id, credit_usage_id. amount is optional and defaults to 0 when omitted.{ "message": <localized text>, "id": <new id> }.Authorization: Bearer ********************curl --location --globoff 'https://.daftara.com/v2/api/entity/charge_usage' \
--header 'Accept: application/json' \
--header 'apikey: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"credit_charge_id": 12,
"credit_usage_id": 5,
"amount": 50
}'{
"message": "Charge usage added successfully",
"id": 0
}