---
title: "Create charge"
method: POST
path: "/v1/Charges"
tags: ["Charges"]
---

# Create charge

`POST /v1/Charges`

Create a new charge.

## Request body

- RevAppModelsCharge
  - `charge_id` integer — Primary identifier for this charge.
  - `product_id` integer — Id of product associated with this charge
  - `product_type_id` integer — Id of product type associated with this charge
  - `customer_id` integer, required — Id of customer associated with this charge
  - `bill_id` integer — ID of bill the charge is applied to.
  - `service_id` integer — Id of service associated with this charge
  - `service_product_id` integer — Id of service product associated with this charge
  - `is_tax_included` boolean, required — Is tax included in the amount of the charge
  - `tax_class_id` integer — Id of Tax related to charge
  - `description` string, required — Description of this charge
  - `amount` number, double — Total dollar amount including taxes and product amounts on charge.
  - `cost` number, double, required — Cost associated to this charge
  - `product_amount` number, double — Dollar amount of product on this charge.
  - `is_commission_exempted` boolean, required — Is commission exempted from this charge
  - `tax_amount` number, double — Tax amount on this charge.
  - `geocode` string — Location of the charge.
  - `proration` number, double — Quantity of proration associated to this charge
  - `created_date` string, date-time — Date the charge was created.
  - `created_by` integer — ID of user that created the charge.
  - `quantity` number, double, required — Units of product or product type on the transaction.
  - `rate` number, double, required — Rate of product associated to this transaction
  - `is_prorated` boolean, required — Is proration of transaction required
  - `start_date` string, date-time, required — Billing start date of product or product type associated to this transaction
  - `end_date` string, date-time, required — Billing end date of product or product type associated to this transaction
  - `links` RevAppComponentsLink[]
    - `rel` string
    - `href` string

## Response `201`

Created

- RevWebAPIModelsCreate
  - `ok` boolean
  - `id` integer

## Other responses

- `400` — BadRequest
- `500` — InternalServerError

---

[API](https://skmtc.net/rev-io/apis/rev-io-api.md) · [All operations](https://skmtc.net/rev-io/apis/rev-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rev-io/rev-io-api/revisions/135571434f6c/schema)
