# Chargebee Integration via LowCodeAPI
## Overview
Subscription billing and recurring revenue management platform
## Base Endpoint
```
https://api.lowcodeapi.com/chargebee/
```
## Authentication
LowCodeAPI handles authentication automatically. You only need to:
1. **Sign up** at [https://www.chargebee.com](https://www.chargebee.com)
2. **Get your credentials** from [https://www.chargebee.com](https://www.chargebee.com)
3. **Connect your account** in LowCodeAPI dashboard
4. **Use your `api_token`** in all requests
The `api_token` is your LowCodeAPI authentication token. LowCodeAPI will automatically:
- Fetch your Chargebee API key
- Apply it to each request with `Authorization` header
**Auth Type**: API Key (Authorization header)
## API Categories
- Payment Processing
## Common Endpoints
### Category: Customers
#### Create Customer
**Method**: `POST` | **LowCodeAPI Path**: `/v2/customers`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/customers&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/customers](https://apidocs.chargebee.com/docs/api/customers)
---
#### List Customers
**Method**: `GET` | **LowCodeAPI Path**: `/v2/customers`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/customers&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/customers](https://apidocs.chargebee.com/docs/api/customers)
---
#### Retrieve Customer
**Method**: `GET` | **LowCodeAPI Path**: `/v2/customers/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/customers/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/customers](https://apidocs.chargebee.com/docs/api/customers)
---
#### Update Customer
**Method**: `POST` | **LowCodeAPI Path**: `/v2/customers/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/customers/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/customers](https://apidocs.chargebee.com/docs/api/customers)
---
#### Delete Customer
**Method**: `POST` | **LowCodeAPI Path**: `/v2/customers/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/customers/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
#### Move Customer
**Method**: `POST` | **LowCodeAPI Path**: `/v2/customers/id/move`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers/id/move?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/customers/id/move?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/move](https://apidocs.chargebee.com/docs/api/move)
---
#### Change Customer Billing Date
**Method**: `POST` | **LowCodeAPI Path**: `/v2/customers/id/change_billing_date`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers/id/change_billing_date?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/customers/id/change_billing_date?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/change_billing_date](https://apidocs.chargebee.com/docs/api/change_billing_date)
---
#### Merge Customer
**Method**: `POST` | **LowCodeAPI Path**: `/v2/customers/id/merge`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers/id/merge?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/customers/id/merge?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/merge](https://apidocs.chargebee.com/docs/api/merge)
---
#### Clear Customer Personal Data
**Method**: `POST` | **LowCodeAPI Path**: `/v2/customers/id/clear_personal_data`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/customers/id/clear_personal_data?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/customers/id/clear_personal_data?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/clear_personal_data](https://apidocs.chargebee.com/docs/api/clear_personal_data)
---
### Category: Subscriptions
#### Create Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/subscriptions](https://apidocs.chargebee.com/docs/api/subscriptions)
---
#### List Subscriptions
**Method**: `GET` | **LowCodeAPI Path**: `/v2/subscriptions`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/subscriptions&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/subscriptions](https://apidocs.chargebee.com/docs/api/subscriptions)
---
#### Retrieve Subscription
**Method**: `GET` | **LowCodeAPI Path**: `/v2/subscriptions/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/subscriptions](https://apidocs.chargebee.com/docs/api/subscriptions)
---
#### Update Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/subscriptions](https://apidocs.chargebee.com/docs/api/subscriptions)
---
#### Cancel Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/cancel`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/cancel?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/cancel?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/cancel](https://apidocs.chargebee.com/docs/api/cancel)
---
#### Reactivate Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/reactivate`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/reactivate?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/reactivate?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/reactivate](https://apidocs.chargebee.com/docs/api/reactivate)
---
#### Pause Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/pause`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/pause?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/pause?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/pause](https://apidocs.chargebee.com/docs/api/pause)
---
#### Resume Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/resume`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/resume?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/resume?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/resume](https://apidocs.chargebee.com/docs/api/resume)
---
#### Delete Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
#### Change Subscription Term End
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/change_term_end`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/change_term_end?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/change_term_end?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/change_term_end](https://apidocs.chargebee.com/docs/api/change_term_end)
---
#### Cancel Subscription Items
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/cancel_for_items`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/cancel_for_items?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/cancel_for_items?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/cancel_for_items](https://apidocs.chargebee.com/docs/api/cancel_for_items)
---
#### Update Subscription Items
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/update_for_items`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/update_for_items?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/update_for_items?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/update_for_items](https://apidocs.chargebee.com/docs/api/update_for_items)
---
#### Change Term End For Items
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/change_term_end_for_items`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/change_term_end_for_items?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/change_term_end_for_items?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/change_term_end_for_items](https://apidocs.chargebee.com/docs/api/change_term_end_for_items)
---
#### Import Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/import_subscription`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/import_subscription?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/import_subscription?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/import_subscription](https://apidocs.chargebee.com/docs/api/import_subscription)
---
#### Import Subscription For Items
**Method**: `POST` | **LowCodeAPI Path**: `/v2/subscriptions/id/import_for_items`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/import_for_items?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/subscriptions/id/import_for_items?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/import_for_items](https://apidocs.chargebee.com/docs/api/import_for_items)
---
### Category: Invoices
#### Create Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/invoices](https://apidocs.chargebee.com/docs/api/invoices)
---
#### List Invoices
**Method**: `GET` | **LowCodeAPI Path**: `/v2/invoices`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/invoices&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/invoices](https://apidocs.chargebee.com/docs/api/invoices)
---
#### Retrieve Invoice
**Method**: `GET` | **LowCodeAPI Path**: `/v2/invoices/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/invoices/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/invoices](https://apidocs.chargebee.com/docs/api/invoices)
---
#### Update Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/invoices](https://apidocs.chargebee.com/docs/api/invoices)
---
#### Record Invoice Payment
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/record_payment`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/record_payment?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/record_payment?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/record_payment](https://apidocs.chargebee.com/docs/api/record_payment)
---
#### Record Invoice Refund
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/record_refund`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/record_refund?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/record_refund?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/record_refund](https://apidocs.chargebee.com/docs/api/record_refund)
---
#### Void Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/void_invoice`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/void_invoice?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/void_invoice?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/void_invoice](https://apidocs.chargebee.com/docs/api/void_invoice)
---
#### Write Off Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/write_off`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/write_off?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/write_off?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/write_off](https://apidocs.chargebee.com/docs/api/write_off)
---
#### Delete Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
#### Collect Invoice Payment
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/collect_payment`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/collect_payment?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/collect_payment?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/collect_payment](https://apidocs.chargebee.com/docs/api/collect_payment)
---
#### Add Charge To Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/add_charge`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/add_charge?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/add_charge?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/add_charge](https://apidocs.chargebee.com/docs/api/add_charge)
---
#### Add Addon Charge To Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/add_addon_charge`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/add_addon_charge?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/add_addon_charge?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/add_addon_charge](https://apidocs.chargebee.com/docs/api/add_addon_charge)
---
#### Close Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/close`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/close?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/close?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/close](https://apidocs.chargebee.com/docs/api/close)
---
#### Reopen Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/reopen`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/reopen?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/reopen?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/reopen](https://apidocs.chargebee.com/docs/api/reopen)
---
#### Import Invoice
**Method**: `POST` | **LowCodeAPI Path**: `/v2/invoices/id/import_invoice`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/invoices/id/import_invoice?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/invoices/id/import_invoice?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/import_invoice](https://apidocs.chargebee.com/docs/api/import_invoice)
---
### Category: Credit Notes
#### Create Credit Note
**Method**: `POST` | **LowCodeAPI Path**: `/v2/credit_notes`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/credit_notes&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/credit_notes](https://apidocs.chargebee.com/docs/api/credit_notes)
---
#### List Credit Notes
**Method**: `GET` | **LowCodeAPI Path**: `/v2/credit_notes`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/credit_notes&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/credit_notes](https://apidocs.chargebee.com/docs/api/credit_notes)
---
#### Retrieve Credit Note
**Method**: `GET` | **LowCodeAPI Path**: `/v2/credit_notes/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/credit_notes/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/credit_notes](https://apidocs.chargebee.com/docs/api/credit_notes)
---
#### Update Credit Note
**Method**: `POST` | **LowCodeAPI Path**: `/v2/credit_notes/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/credit_notes/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/credit_notes](https://apidocs.chargebee.com/docs/api/credit_notes)
---
#### Record Credit Note Refund
**Method**: `POST` | **LowCodeAPI Path**: `/v2/credit_notes/id/record_refund`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/record_refund?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/record_refund?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/record_refund](https://apidocs.chargebee.com/docs/api/record_refund)
---
#### Void Credit Note
**Method**: `POST` | **LowCodeAPI Path**: `/v2/credit_notes/id/void_credit_note`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/void_credit_note?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/void_credit_note?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/void_credit_note](https://apidocs.chargebee.com/docs/api/void_credit_note)
---
#### Delete Credit Note
**Method**: `POST` | **LowCodeAPI Path**: `/v2/credit_notes/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
#### Import Credit Note
**Method**: `POST` | **LowCodeAPI Path**: `/v2/credit_notes/id/import_credit_note`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/import_credit_note?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/import_credit_note?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/import_credit_note](https://apidocs.chargebee.com/docs/api/import_credit_note)
---
#### Send Credit Note
**Method**: `POST` | **LowCodeAPI Path**: `/v2/credit_notes/id/send`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/send?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/credit_notes/id/send?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/send](https://apidocs.chargebee.com/docs/api/send)
---
### Category: Transactions
#### List Transactions
**Method**: `GET` | **LowCodeAPI Path**: `/v2/transactions`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/transactions&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/transactions&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/transactions](https://apidocs.chargebee.com/docs/api/transactions)
---
#### Retrieve Transaction
**Method**: `GET` | **LowCodeAPI Path**: `/v2/transactions/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/transactions/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/transactions/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/transactions](https://apidocs.chargebee.com/docs/api/transactions)
---
#### Refund Transaction
**Method**: `POST` | **LowCodeAPI Path**: `/v2/transactions/id/refund`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/transactions/id/refund?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/transactions/id/refund?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/refund](https://apidocs.chargebee.com/docs/api/refund)
---
### Category: Items
#### Create Item
**Method**: `POST` | **LowCodeAPI Path**: `/v2/items`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/items&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/items&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/items](https://apidocs.chargebee.com/docs/api/items)
---
#### List Items
**Method**: `GET` | **LowCodeAPI Path**: `/v2/items`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/items&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/items&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/items](https://apidocs.chargebee.com/docs/api/items)
---
#### Retrieve Item
**Method**: `GET` | **LowCodeAPI Path**: `/v2/items/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/items/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/items/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/items](https://apidocs.chargebee.com/docs/api/items)
---
#### Update Item
**Method**: `POST` | **LowCodeAPI Path**: `/v2/items/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/items/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/items/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/items](https://apidocs.chargebee.com/docs/api/items)
---
#### Delete Item
**Method**: `POST` | **LowCodeAPI Path**: `/v2/items/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/items/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/items/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Item Prices
#### Create Item Price
**Method**: `POST` | **LowCodeAPI Path**: `/v2/item_prices`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/item_prices&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/item_prices&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/item_prices](https://apidocs.chargebee.com/docs/api/item_prices)
---
#### List Item Prices
**Method**: `GET` | **LowCodeAPI Path**: `/v2/item_prices`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/item_prices&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/item_prices&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/item_prices](https://apidocs.chargebee.com/docs/api/item_prices)
---
#### Retrieve Item Price
**Method**: `GET` | **LowCodeAPI Path**: `/v2/item_prices/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/item_prices/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/item_prices/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/item_prices](https://apidocs.chargebee.com/docs/api/item_prices)
---
#### Update Item Price
**Method**: `POST` | **LowCodeAPI Path**: `/v2/item_prices/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/item_prices/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/item_prices/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/item_prices](https://apidocs.chargebee.com/docs/api/item_prices)
---
#### Delete Item Price
**Method**: `POST` | **LowCodeAPI Path**: `/v2/item_prices/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/item_prices/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/item_prices/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Attached Items
#### Create Attached Item
**Method**: `POST` | **LowCodeAPI Path**: `/v2/attached_items`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/attached_items&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/attached_items&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/attached_items](https://apidocs.chargebee.com/docs/api/attached_items)
---
#### List Attached Items
**Method**: `GET` | **LowCodeAPI Path**: `/v2/attached_items`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/attached_items&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/attached_items&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/attached_items](https://apidocs.chargebee.com/docs/api/attached_items)
---
#### Retrieve Attached Item
**Method**: `GET` | **LowCodeAPI Path**: `/v2/attached_items/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/attached_items/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/attached_items/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/attached_items](https://apidocs.chargebee.com/docs/api/attached_items)
---
#### Update Attached Item
**Method**: `POST` | **LowCodeAPI Path**: `/v2/attached_items/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/attached_items/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/attached_items/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/attached_items](https://apidocs.chargebee.com/docs/api/attached_items)
---
#### Delete Attached Item
**Method**: `POST` | **LowCodeAPI Path**: `/v2/attached_items/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/attached_items/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/attached_items/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Coupons
#### Create Coupon
**Method**: `POST` | **LowCodeAPI Path**: `/v2/coupons`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupons&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/coupons&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/coupons](https://apidocs.chargebee.com/docs/api/coupons)
---
#### List Coupons
**Method**: `GET` | **LowCodeAPI Path**: `/v2/coupons`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupons&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/coupons&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/coupons](https://apidocs.chargebee.com/docs/api/coupons)
---
#### Retrieve Coupon
**Method**: `GET` | **LowCodeAPI Path**: `/v2/coupons/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupons/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/coupons/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/coupons](https://apidocs.chargebee.com/docs/api/coupons)
---
#### Update Coupon
**Method**: `POST` | **LowCodeAPI Path**: `/v2/coupons/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupons/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/coupons/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/coupons](https://apidocs.chargebee.com/docs/api/coupons)
---
#### Delete Coupon
**Method**: `POST` | **LowCodeAPI Path**: `/v2/coupons/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupons/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/coupons/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
#### Unarchive Coupon
**Method**: `POST` | **LowCodeAPI Path**: `/v2/coupons/id/unarchive`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupons/id/unarchive?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/coupons/id/unarchive?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/unarchive](https://apidocs.chargebee.com/docs/api/unarchive)
---
#### Copy Coupon
**Method**: `POST` | **LowCodeAPI Path**: `/v2/coupons/id/copy`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupons/id/copy?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/coupons/id/copy?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/copy](https://apidocs.chargebee.com/docs/api/copy)
---
### Category: Coupon Sets
#### Create Coupon Set
**Method**: `POST` | **LowCodeAPI Path**: `/v2/coupon_sets`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupon_sets&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/coupon_sets&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/coupon_sets](https://apidocs.chargebee.com/docs/api/coupon_sets)
---
#### List Coupon Sets
**Method**: `GET` | **LowCodeAPI Path**: `/v2/coupon_sets`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupon_sets&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/coupon_sets&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/coupon_sets](https://apidocs.chargebee.com/docs/api/coupon_sets)
---
#### Retrieve Coupon Set
**Method**: `GET` | **LowCodeAPI Path**: `/v2/coupon_sets/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupon_sets/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/coupon_sets/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/coupon_sets](https://apidocs.chargebee.com/docs/api/coupon_sets)
---
#### Update Coupon Set
**Method**: `POST` | **LowCodeAPI Path**: `/v2/coupon_sets/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupon_sets/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/coupon_sets/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/coupon_sets](https://apidocs.chargebee.com/docs/api/coupon_sets)
---
#### Delete Coupon Set
**Method**: `POST` | **LowCodeAPI Path**: `/v2/coupon_sets/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/coupon_sets/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/coupon_sets/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Plans
#### Create Plan
**Method**: `POST` | **LowCodeAPI Path**: `/v2/plans`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/plans&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/plans&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/plans](https://apidocs.chargebee.com/docs/api/plans)
---
#### List Plans
**Method**: `GET` | **LowCodeAPI Path**: `/v2/plans`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/plans&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/plans&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/plans](https://apidocs.chargebee.com/docs/api/plans)
---
#### Retrieve Plan
**Method**: `GET` | **LowCodeAPI Path**: `/v2/plans/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/plans/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/plans/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/plans](https://apidocs.chargebee.com/docs/api/plans)
---
#### Update Plan
**Method**: `POST` | **LowCodeAPI Path**: `/v2/plans/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/plans/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/plans/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/plans](https://apidocs.chargebee.com/docs/api/plans)
---
#### Delete Plan
**Method**: `POST` | **LowCodeAPI Path**: `/v2/plans/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/plans/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/plans/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Addons
#### Create Addon
**Method**: `POST` | **LowCodeAPI Path**: `/v2/addons`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addons&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/addons&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/addons](https://apidocs.chargebee.com/docs/api/addons)
---
#### List Addons
**Method**: `GET` | **LowCodeAPI Path**: `/v2/addons`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addons&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/addons&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/addons](https://apidocs.chargebee.com/docs/api/addons)
---
#### Retrieve Addon
**Method**: `GET` | **LowCodeAPI Path**: `/v2/addons/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addons/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/addons/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/addons](https://apidocs.chargebee.com/docs/api/addons)
---
#### Update Addon
**Method**: `POST` | **LowCodeAPI Path**: `/v2/addons/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addons/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/addons/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/addons](https://apidocs.chargebee.com/docs/api/addons)
---
#### Delete Addon
**Method**: `POST` | **LowCodeAPI Path**: `/v2/addons/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addons/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/addons/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Events
#### List Events
**Method**: `GET` | **LowCodeAPI Path**: `/v2/events`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/events&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/events&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/events](https://apidocs.chargebee.com/docs/api/events)
---
#### Retrieve Event
**Method**: `GET` | **LowCodeAPI Path**: `/v2/events/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/events/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/events/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/events](https://apidocs.chargebee.com/docs/api/events)
---
### Category: Hosted Pages
#### Create Hosted Page
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/hosted_pages](https://apidocs.chargebee.com/docs/api/hosted_pages)
---
#### List Hosted Pages
**Method**: `GET` | **LowCodeAPI Path**: `/v2/hosted_pages`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/hosted_pages&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/hosted_pages](https://apidocs.chargebee.com/docs/api/hosted_pages)
---
#### Retrieve Hosted Page
**Method**: `GET` | **LowCodeAPI Path**: `/v2/hosted_pages/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/hosted_pages](https://apidocs.chargebee.com/docs/api/hosted_pages)
---
#### Checkout New Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/checkout_new_subscription`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/checkout_new_subscription?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/checkout_new_subscription?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/checkout_new_subscription](https://apidocs.chargebee.com/docs/api/checkout_new_subscription)
---
#### Checkout Existing Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/checkout_existing`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/checkout_existing?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/checkout_existing?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/checkout_existing](https://apidocs.chargebee.com/docs/api/checkout_existing)
---
#### Update Payment Method
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/update_payment_method`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/update_payment_method?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/update_payment_method?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/update_payment_method](https://apidocs.chargebee.com/docs/api/update_payment_method)
---
#### Collect Payment Now
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/collect_now`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/collect_now?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/collect_now?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/collect_now](https://apidocs.chargebee.com/docs/api/collect_now)
---
#### Manage Payment Sources
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/manage_payment_sources`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/manage_payment_sources?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/manage_payment_sources?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/manage_payment_sources](https://apidocs.chargebee.com/docs/api/manage_payment_sources)
---
#### Extend Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/extend_subscription`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/extend_subscription?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/extend_subscription?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/extend_subscription](https://apidocs.chargebee.com/docs/api/extend_subscription)
---
#### Checkout Gift Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/checkout_gift`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/checkout_gift?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/checkout_gift?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/checkout_gift](https://apidocs.chargebee.com/docs/api/checkout_gift)
---
#### Claim Gift Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/claim_gift`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/claim_gift?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/claim_gift?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/claim_gift](https://apidocs.chargebee.com/docs/api/claim_gift)
---
#### Checkout One Time Charge
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hosted_pages/id/checkout_one_time`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/checkout_one_time?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hosted_pages/id/checkout_one_time?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/checkout_one_time](https://apidocs.chargebee.com/docs/api/checkout_one_time)
---
### Category: Virtual Bank Accounts
#### Create Virtual Bank Account
**Method**: `POST` | **LowCodeAPI Path**: `/v2/virtual_bank_accounts`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/virtual_bank_accounts&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/virtual_bank_accounts&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/virtual_bank_accounts](https://apidocs.chargebee.com/docs/api/virtual_bank_accounts)
---
#### List Virtual Bank Accounts
**Method**: `GET` | **LowCodeAPI Path**: `/v2/virtual_bank_accounts`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/virtual_bank_accounts&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/virtual_bank_accounts&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/virtual_bank_accounts](https://apidocs.chargebee.com/docs/api/virtual_bank_accounts)
---
#### Retrieve Virtual Bank Account
**Method**: `GET` | **LowCodeAPI Path**: `/v2/virtual_bank_accounts/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/virtual_bank_accounts/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/virtual_bank_accounts/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/virtual_bank_accounts](https://apidocs.chargebee.com/docs/api/virtual_bank_accounts)
---
#### Update Virtual Bank Account
**Method**: `POST` | **LowCodeAPI Path**: `/v2/virtual_bank_accounts/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/virtual_bank_accounts/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/virtual_bank_accounts/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/virtual_bank_accounts](https://apidocs.chargebee.com/docs/api/virtual_bank_accounts)
---
### Category: Payment Sources
#### Create Payment Source
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_sources`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_sources&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_sources&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_sources](https://apidocs.chargebee.com/docs/api/payment_sources)
---
#### List Payment Sources
**Method**: `GET` | **LowCodeAPI Path**: `/v2/payment_sources`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_sources&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/payment_sources&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_sources](https://apidocs.chargebee.com/docs/api/payment_sources)
---
#### Retrieve Payment Source
**Method**: `GET` | **LowCodeAPI Path**: `/v2/payment_sources/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_sources/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/payment_sources/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_sources](https://apidocs.chargebee.com/docs/api/payment_sources)
---
#### Update Payment Source
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_sources/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_sources/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_sources/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_sources](https://apidocs.chargebee.com/docs/api/payment_sources)
---
#### Verify Payment Source
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_sources/id/verify_payment_source`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_sources/id/verify_payment_source?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_sources/id/verify_payment_source?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/verify_payment_source](https://apidocs.chargebee.com/docs/api/verify_payment_source)
---
#### Delete Payment Source
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_sources/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_sources/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_sources/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Usages
#### Create Usage
**Method**: `POST` | **LowCodeAPI Path**: `/v2/usages`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/usages&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/usages&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/usages](https://apidocs.chargebee.com/docs/api/usages)
---
#### List Usages
**Method**: `GET` | **LowCodeAPI Path**: `/v2/usages`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/usages&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/usages&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/usages](https://apidocs.chargebee.com/docs/api/usages)
---
#### Retrieve Usage
**Method**: `GET` | **LowCodeAPI Path**: `/v2/usages/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/usages/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/usages/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/usages](https://apidocs.chargebee.com/docs/api/usages)
---
#### Update Usage
**Method**: `POST` | **LowCodeAPI Path**: `/v2/usages/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/usages/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/usages/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/usages](https://apidocs.chargebee.com/docs/api/usages)
---
#### Delete Usage
**Method**: `POST` | **LowCodeAPI Path**: `/v2/usages/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/usages/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/usages/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Hierarchies
#### Get Hierarchy
**Method**: `GET` | **LowCodeAPI Path**: `/v2/hierarchies`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hierarchies&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/hierarchies&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/hierarchies](https://apidocs.chargebee.com/docs/api/hierarchies)
---
#### Update Hierarchy Access
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hierarchies/update_hierarchy_access`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hierarchies/update_hierarchy_access&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hierarchies/update_hierarchy_access&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/update_hierarchy_access](https://apidocs.chargebee.com/docs/api/update_hierarchy_access)
---
#### Link Customer To Hierarchy
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hierarchies/link`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hierarchies/link&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hierarchies/link&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/link](https://apidocs.chargebee.com/docs/api/link)
---
#### Delink Customer From Hierarchy
**Method**: `POST` | **LowCodeAPI Path**: `/v2/hierarchies/delink`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/hierarchies/delink&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/hierarchies/delink&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delink](https://apidocs.chargebee.com/docs/api/delink)
---
### Category: Currencies
#### List Currencies
**Method**: `GET` | **LowCodeAPI Path**: `/v2/currencies`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/currencies&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/currencies&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/currencies](https://apidocs.chargebee.com/docs/api/currencies)
---
#### Retrieve Currency
**Method**: `GET` | **LowCodeAPI Path**: `/v2/currencies/code`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/currencies/code?code={code}&api_token={api_token}
```
**Path Parameters**:
| `code` | string | The currency code |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/currencies/code?code=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/currencies](https://apidocs.chargebee.com/docs/api/currencies)
---
### Category: Webhooks
#### List Webhooks
**Method**: `GET` | **LowCodeAPI Path**: `/v2/webhooks`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/webhooks&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/webhooks&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/webhooks](https://apidocs.chargebee.com/docs/api/webhooks)
---
### Category: Exports
#### Create Export
**Method**: `POST` | **LowCodeAPI Path**: `/v2/exports`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/exports&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/exports&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/exports](https://apidocs.chargebee.com/docs/api/exports)
---
#### List Exports
**Method**: `GET` | **LowCodeAPI Path**: `/v2/exports`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/exports&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/exports&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/exports](https://apidocs.chargebee.com/docs/api/exports)
---
#### Retrieve Export
**Method**: `GET` | **LowCodeAPI Path**: `/v2/exports/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/exports/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/exports/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/exports](https://apidocs.chargebee.com/docs/api/exports)
---
### Category: Imports
#### Create Import
**Method**: `POST` | **LowCodeAPI Path**: `/v2/imports`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/imports&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/imports&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/imports](https://apidocs.chargebee.com/docs/api/imports)
---
#### List Imports
**Method**: `GET` | **LowCodeAPI Path**: `/v2/imports`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/imports&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/imports&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/imports](https://apidocs.chargebee.com/docs/api/imports)
---
#### Retrieve Import
**Method**: `GET` | **LowCodeAPI Path**: `/v2/imports/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/imports/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/imports/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/imports](https://apidocs.chargebee.com/docs/api/imports)
---
### Category: Resource Migrations
#### Retrieve Latest Resource Migration
**Method**: `GET` | **LowCodeAPI Path**: `/v2/resource_migrations`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/resource_migrations&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/resource_migrations&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/resource_migrations](https://apidocs.chargebee.com/docs/api/resource_migrations)
---
### Category: Business Entity Transfers
#### Transfer Resource To Business Entity
**Method**: `POST` | **LowCodeAPI Path**: `/v2/business_entity_transfers`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/business_entity_transfers&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/business_entity_transfers&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/business_entity_transfers](https://apidocs.chargebee.com/docs/api/business_entity_transfers)
---
#### List Business Entity Transfers
**Method**: `GET` | **LowCodeAPI Path**: `/v2/business_entity_transfers`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/business_entity_transfers&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/business_entity_transfers&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/business_entity_transfers](https://apidocs.chargebee.com/docs/api/business_entity_transfers)
---
#### Retrieve Business Entity Transfer
**Method**: `GET` | **LowCodeAPI Path**: `/v2/business_entity_transfers/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/business_entity_transfers/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/business_entity_transfers/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/business_entity_transfers](https://apidocs.chargebee.com/docs/api/business_entity_transfers)
---
### Category: Time Machines
#### Create Time Machine
**Method**: `POST` | **LowCodeAPI Path**: `/v2/time_machines`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/time_machines&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/time_machines&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/time_machines](https://apidocs.chargebee.com/docs/api/time_machines)
---
#### List Time Machines
**Method**: `GET` | **LowCodeAPI Path**: `/v2/time_machines`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/time_machines&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/time_machines&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/time_machines](https://apidocs.chargebee.com/docs/api/time_machines)
---
#### Retrieve Time Machine
**Method**: `GET` | **LowCodeAPI Path**: `/v2/time_machines/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/time_machines/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/time_machines/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/time_machines](https://apidocs.chargebee.com/docs/api/time_machines)
---
### Category: Third Party Payment Methods
#### Create Third Party Payment Method
**Method**: `POST` | **LowCodeAPI Path**: `/v2/third_party_payment_methods`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/third_party_payment_methods&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/third_party_payment_methods&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/third_party_payment_methods](https://apidocs.chargebee.com/docs/api/third_party_payment_methods)
---
#### List Third Party Payment Methods
**Method**: `GET` | **LowCodeAPI Path**: `/v2/third_party_payment_methods`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/third_party_payment_methods&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/third_party_payment_methods&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/third_party_payment_methods](https://apidocs.chargebee.com/docs/api/third_party_payment_methods)
---
#### Retrieve Third Party Payment Method
**Method**: `GET` | **LowCodeAPI Path**: `/v2/third_party_payment_methods/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/third_party_payment_methods/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/third_party_payment_methods/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/third_party_payment_methods](https://apidocs.chargebee.com/docs/api/third_party_payment_methods)
---
#### Update Third Party Payment Method
**Method**: `POST` | **LowCodeAPI Path**: `/v2/third_party_payment_methods/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/third_party_payment_methods/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/third_party_payment_methods/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/third_party_payment_methods](https://apidocs.chargebee.com/docs/api/third_party_payment_methods)
---
### Category: Unbilled Charges
#### Create Unbilled Charge
**Method**: `POST` | **LowCodeAPI Path**: `/v2/unbilled_charges`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/unbilled_charges&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/unbilled_charges&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/unbilled_charges](https://apidocs.chargebee.com/docs/api/unbilled_charges)
---
#### List Unbilled Charges
**Method**: `GET` | **LowCodeAPI Path**: `/v2/unbilled_charges`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/unbilled_charges&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/unbilled_charges&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/unbilled_charges](https://apidocs.chargebee.com/docs/api/unbilled_charges)
---
#### Retrieve Unbilled Charge
**Method**: `GET` | **LowCodeAPI Path**: `/v2/unbilled_charges/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/unbilled_charges/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/unbilled_charges/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/unbilled_charges](https://apidocs.chargebee.com/docs/api/unbilled_charges)
---
#### Update Unbilled Charge
**Method**: `POST` | **LowCodeAPI Path**: `/v2/unbilled_charges/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/unbilled_charges/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/unbilled_charges/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/unbilled_charges](https://apidocs.chargebee.com/docs/api/unbilled_charges)
---
#### Delete Unbilled Charge
**Method**: `POST` | **LowCodeAPI Path**: `/v2/unbilled_charges/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/unbilled_charges/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/unbilled_charges/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
#### Invoice Unbilled Charges
**Method**: `POST` | **LowCodeAPI Path**: `/v2/unbilled_charges/id/invoice_unbilled_charges`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/unbilled_charges/id/invoice_unbilled_charges?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/unbilled_charges/id/invoice_unbilled_charges?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/invoice_unbilled_charges](https://apidocs.chargebee.com/docs/api/invoice_unbilled_charges)
---
### Category: Payment Intents
#### Create Payment Intent
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_intents`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_intents&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_intents&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_intents](https://apidocs.chargebee.com/docs/api/payment_intents)
---
#### List Payment Intents
**Method**: `GET` | **LowCodeAPI Path**: `/v2/payment_intents`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_intents&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/payment_intents&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_intents](https://apidocs.chargebee.com/docs/api/payment_intents)
---
#### Retrieve Payment Intent
**Method**: `GET` | **LowCodeAPI Path**: `/v2/payment_intents/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_intents/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/payment_intents/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_intents](https://apidocs.chargebee.com/docs/api/payment_intents)
---
#### Update Payment Intent
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_intents/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_intents/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_intents/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_intents](https://apidocs.chargebee.com/docs/api/payment_intents)
---
### Category: Quoted Subscriptions
#### Create Quoted Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/quoted_subscriptions`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quoted_subscriptions&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/quoted_subscriptions&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/quoted_subscriptions](https://apidocs.chargebee.com/docs/api/quoted_subscriptions)
---
#### Retrieve Quoted Subscription
**Method**: `GET` | **LowCodeAPI Path**: `/v2/quoted_subscriptions/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quoted_subscriptions/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/quoted_subscriptions/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/quoted_subscriptions](https://apidocs.chargebee.com/docs/api/quoted_subscriptions)
---
#### Convert Quoted Subscription
**Method**: `POST` | **LowCodeAPI Path**: `/v2/quoted_subscriptions/id/convert`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quoted_subscriptions/id/convert?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/quoted_subscriptions/id/convert?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/convert](https://apidocs.chargebee.com/docs/api/convert)
---
### Category: Quotes
#### Create Quote
**Method**: `POST` | **LowCodeAPI Path**: `/v2/quotes`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quotes&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/quotes&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/quotes](https://apidocs.chargebee.com/docs/api/quotes)
---
#### List Quotes
**Method**: `GET` | **LowCodeAPI Path**: `/v2/quotes`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quotes&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/quotes&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/quotes](https://apidocs.chargebee.com/docs/api/quotes)
---
#### Retrieve Quote
**Method**: `GET` | **LowCodeAPI Path**: `/v2/quotes/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quotes/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/quotes/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/quotes](https://apidocs.chargebee.com/docs/api/quotes)
---
#### Update Quote
**Method**: `POST` | **LowCodeAPI Path**: `/v2/quotes/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quotes/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/quotes/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/quotes](https://apidocs.chargebee.com/docs/api/quotes)
---
#### Convert Quote
**Method**: `POST` | **LowCodeAPI Path**: `/v2/quotes/id/convert`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quotes/id/convert?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/quotes/id/convert?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/convert](https://apidocs.chargebee.com/docs/api/convert)
---
#### Delete Quote
**Method**: `POST` | **LowCodeAPI Path**: `/v2/quotes/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quotes/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/quotes/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
#### Download Quote PDF
**Method**: `POST` | **LowCodeAPI Path**: `/v2/quotes/id/pdf`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/quotes/id/pdf?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/quotes/id/pdf?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/pdf](https://apidocs.chargebee.com/docs/api/pdf)
---
### Category: Orders
#### Create Order
**Method**: `POST` | **LowCodeAPI Path**: `/v2/orders`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/orders&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/orders&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/orders](https://apidocs.chargebee.com/docs/api/orders)
---
#### List Orders
**Method**: `GET` | **LowCodeAPI Path**: `/v2/orders`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/orders&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/orders&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/orders](https://apidocs.chargebee.com/docs/api/orders)
---
#### Retrieve Order
**Method**: `GET` | **LowCodeAPI Path**: `/v2/orders/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/orders/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/orders/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/orders](https://apidocs.chargebee.com/docs/api/orders)
---
#### Update Order
**Method**: `POST` | **LowCodeAPI Path**: `/v2/orders/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/orders/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/orders/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/orders](https://apidocs.chargebee.com/docs/api/orders)
---
#### Cancel Order
**Method**: `POST` | **LowCodeAPI Path**: `/v2/orders/id/cancel`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/orders/id/cancel?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/orders/id/cancel?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/cancel](https://apidocs.chargebee.com/docs/api/cancel)
---
#### Reopen Order
**Method**: `POST` | **LowCodeAPI Path**: `/v2/orders/id/reopen`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/orders/id/reopen?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/orders/id/reopen?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/reopen](https://apidocs.chargebee.com/docs/api/reopen)
---
### Category: Gifts
#### Create Gift
**Method**: `POST` | **LowCodeAPI Path**: `/v2/gifts`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/gifts&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/gifts&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/gifts](https://apidocs.chargebee.com/docs/api/gifts)
---
#### List Gifts
**Method**: `GET` | **LowCodeAPI Path**: `/v2/gifts`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/gifts&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/gifts&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/gifts](https://apidocs.chargebee.com/docs/api/gifts)
---
#### Retrieve Gift
**Method**: `GET` | **LowCodeAPI Path**: `/v2/gifts/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/gifts/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/gifts/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/gifts](https://apidocs.chargebee.com/docs/api/gifts)
---
#### Claim Gift
**Method**: `POST` | **LowCodeAPI Path**: `/v2/gifts/id/claim`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/gifts/id/claim?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/gifts/id/claim?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/claim](https://apidocs.chargebee.com/docs/api/claim)
---
#### Cancel Gift
**Method**: `POST` | **LowCodeAPI Path**: `/v2/gifts/id/cancel`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/gifts/id/cancel?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/gifts/id/cancel?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/cancel](https://apidocs.chargebee.com/docs/api/cancel)
---
#### Update Gift
**Method**: `POST` | **LowCodeAPI Path**: `/v2/gifts/id/update_gift`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/gifts/id/update_gift?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/gifts/id/update_gift?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/update_gift](https://apidocs.chargebee.com/docs/api/update_gift)
---
### Category: Payment Allocations
#### List Payment Allocations
**Method**: `GET` | **LowCodeAPI Path**: `/v2/payment_allocations`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_allocations&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/payment_allocations&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_allocations](https://apidocs.chargebee.com/docs/api/payment_allocations)
---
#### Retrieve Payment Allocation
**Method**: `GET` | **LowCodeAPI Path**: `/v2/payment_allocations/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_allocations/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/payment_allocations/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_allocations](https://apidocs.chargebee.com/docs/api/payment_allocations)
---
### Category: Estimates
#### Create Estimate
**Method**: `POST` | **LowCodeAPI Path**: `/v2/estimates`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/estimates&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/estimates&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/estimates](https://apidocs.chargebee.com/docs/api/estimates)
---
#### Retrieve Estimate
**Method**: `GET` | **LowCodeAPI Path**: `/v2/estimates/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/estimates/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/estimates/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/estimates](https://apidocs.chargebee.com/docs/api/estimates)
---
### Category: Addresses
#### Create Address
**Method**: `POST` | **LowCodeAPI Path**: `/v2/addresses`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addresses&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/addresses&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/addresses](https://apidocs.chargebee.com/docs/api/addresses)
---
#### List Addresses
**Method**: `GET` | **LowCodeAPI Path**: `/v2/addresses`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addresses&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/addresses&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/addresses](https://apidocs.chargebee.com/docs/api/addresses)
---
#### Retrieve Address
**Method**: `GET` | **LowCodeAPI Path**: `/v2/addresses/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addresses/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/addresses/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/addresses](https://apidocs.chargebee.com/docs/api/addresses)
---
#### Update Address
**Method**: `POST` | **LowCodeAPI Path**: `/v2/addresses/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addresses/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/addresses/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/addresses](https://apidocs.chargebee.com/docs/api/addresses)
---
#### Delete Address
**Method**: `POST` | **LowCodeAPI Path**: `/v2/addresses/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/addresses/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/addresses/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Contacts
#### Create Contact
**Method**: `POST` | **LowCodeAPI Path**: `/v2/contacts`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/contacts&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/contacts&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/contacts](https://apidocs.chargebee.com/docs/api/contacts)
---
#### List Contacts
**Method**: `GET` | **LowCodeAPI Path**: `/v2/contacts`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/contacts&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/contacts&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/contacts](https://apidocs.chargebee.com/docs/api/contacts)
---
#### Retrieve Contact
**Method**: `GET` | **LowCodeAPI Path**: `/v2/contacts/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/contacts/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/contacts/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/contacts](https://apidocs.chargebee.com/docs/api/contacts)
---
#### Update Contact
**Method**: `POST` | **LowCodeAPI Path**: `/v2/contacts/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/contacts/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/contacts/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/contacts](https://apidocs.chargebee.com/docs/api/contacts)
---
#### Delete Contact
**Method**: `POST` | **LowCodeAPI Path**: `/v2/contacts/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/contacts/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/contacts/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Tax Profiles
#### Create Tax Profile
**Method**: `POST` | **LowCodeAPI Path**: `/v2/tax_profiles`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_profiles&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/tax_profiles&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/tax_profiles](https://apidocs.chargebee.com/docs/api/tax_profiles)
---
#### List Tax Profiles
**Method**: `GET` | **LowCodeAPI Path**: `/v2/tax_profiles`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_profiles&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/tax_profiles&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/tax_profiles](https://apidocs.chargebee.com/docs/api/tax_profiles)
---
#### Retrieve Tax Profile
**Method**: `GET` | **LowCodeAPI Path**: `/v2/tax_profiles/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_profiles/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/tax_profiles/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/tax_profiles](https://apidocs.chargebee.com/docs/api/tax_profiles)
---
#### Update Tax Profile
**Method**: `POST` | **LowCodeAPI Path**: `/v2/tax_profiles/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_profiles/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/tax_profiles/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/tax_profiles](https://apidocs.chargebee.com/docs/api/tax_profiles)
---
#### Delete Tax Profile
**Method**: `POST` | **LowCodeAPI Path**: `/v2/tax_profiles/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_profiles/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/tax_profiles/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Tax Withholdings
#### Create Tax Withholding
**Method**: `POST` | **LowCodeAPI Path**: `/v2/tax_withholdings`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_withholdings&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/tax_withholdings&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/tax_withholdings](https://apidocs.chargebee.com/docs/api/tax_withholdings)
---
#### List Tax Withholdings
**Method**: `GET` | **LowCodeAPI Path**: `/v2/tax_withholdings`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_withholdings&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/tax_withholdings&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/tax_withholdings](https://apidocs.chargebee.com/docs/api/tax_withholdings)
---
#### Retrieve Tax Withholding
**Method**: `GET` | **LowCodeAPI Path**: `/v2/tax_withholdings/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_withholdings/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/tax_withholdings/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/tax_withholdings](https://apidocs.chargebee.com/docs/api/tax_withholdings)
---
#### Update Tax Withholding
**Method**: `POST` | **LowCodeAPI Path**: `/v2/tax_withholdings/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_withholdings/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/tax_withholdings/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/tax_withholdings](https://apidocs.chargebee.com/docs/api/tax_withholdings)
---
#### Delete Tax Withholding
**Method**: `POST` | **LowCodeAPI Path**: `/v2/tax_withholdings/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/tax_withholdings/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/tax_withholdings/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
### Category: Promotional Credits
#### Add Promotional Credits
**Method**: `POST` | **LowCodeAPI Path**: `/v2/promotional_credits`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/promotional_credits&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/promotional_credits&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/promotional_credits](https://apidocs.chargebee.com/docs/api/promotional_credits)
---
#### List Promotional Credits
**Method**: `GET` | **LowCodeAPI Path**: `/v2/promotional_credits`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/promotional_credits&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/promotional_credits&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/promotional_credits](https://apidocs.chargebee.com/docs/api/promotional_credits)
---
#### Retrieve Promotional Credit
**Method**: `GET` | **LowCodeAPI Path**: `/v2/promotional_credits/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/promotional_credits/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/promotional_credits/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/promotional_credits](https://apidocs.chargebee.com/docs/api/promotional_credits)
---
#### Deduct Promotional Credits
**Method**: `POST` | **LowCodeAPI Path**: `/v2/promotional_credits/id/deduct`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/promotional_credits/id/deduct?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/promotional_credits/id/deduct?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/deduct](https://apidocs.chargebee.com/docs/api/deduct)
---
#### Set Promotional Credits
**Method**: `POST` | **LowCodeAPI Path**: `/v2/promotional_credits/id/set`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/promotional_credits/id/set?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/promotional_credits/id/set?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/set](https://apidocs.chargebee.com/docs/api/set)
---
### Category: Payment Reference Numbers
#### Create Payment Reference Number
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_reference_numbers`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_reference_numbers](https://apidocs.chargebee.com/docs/api/payment_reference_numbers)
---
#### List Payment Reference Numbers
**Method**: `GET` | **LowCodeAPI Path**: `/v2/payment_reference_numbers`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_reference_numbers](https://apidocs.chargebee.com/docs/api/payment_reference_numbers)
---
#### Retrieve Payment Reference Number
**Method**: `GET` | **LowCodeAPI Path**: `/v2/payment_reference_numbers/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_reference_numbers](https://apidocs.chargebee.com/docs/api/payment_reference_numbers)
---
#### Update Payment Reference Number
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_reference_numbers/id`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers/id?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers/id?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/payment_reference_numbers](https://apidocs.chargebee.com/docs/api/payment_reference_numbers)
---
#### Delete Payment Reference Number
**Method**: `POST` | **LowCodeAPI Path**: `/v2/payment_reference_numbers/id/delete`
**Full URL**:
```
https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers/id/delete?id={id}&api_token={api_token}
```
**Path Parameters**:
| `id` | string | The unique identifier |
**Note**: Path parameters are passed in the URL path. The LowCodeAPI path uses static parameter names, and the actual values are passed as query parameters with the same names.
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/chargebee/v2/payment_reference_numbers/id/delete?id=VALUE&&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json"
```
**Official Documentation**: [https://apidocs.chargebee.com/docs/api/delete](https://apidocs.chargebee.com/docs/api/delete)
---
## Usage Examples
### Example 1: Basic Usage
Get started with Chargebee API by making your first request.
```bash
# Your example code here
# This demonstrates basic usage
curl -X GET "https://api.lowcodeapi.com/chargebee/?api_token=YOUR_API_TOKEN"
```
### Example 2: Advanced Usage
Explore more advanced features and parameters.
```bash
# Your example code here
# This demonstrates advanced usage
curl -X GET "https://api.lowcodeapi.com/chargebee/?api_token=YOUR_API_TOKEN"
```
## Complete Endpoint Reference
For a complete list of all endpoints and their parameters, refer to:
- **OpenAPI Definition**: `https://backend.lowcodeapi.com/chargebee/definition`
- **Official Provider Documentation**: [https://apidocs.chargebee.com](https://apidocs.chargebee.com)
## Rate Limits & Best Practices
- Check your Chargebee account for specific rate limits
- Use appropriate error handling and retry logic
- Cache responses when appropriate to reduce API calls
## Error Handling
Standard HTTP status codes apply:
- `400` - Invalid request parameters
- `401` - Unauthorized (check your API key)
- `429` - Rate limit exceeded
- `500` - Internal server error