> For the complete documentation index, see [llms.txt](https://navixy.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://navixy.com/docs/navixy-api/user-api/backend-api/resources/billing/bill.md).

# Bill

## Bill object

```json
{
  "order_id": 63602,
  "created": "2012-03-05 11:55:03",
  "sum": 150.0,
  "status": "created",
  "positions": ["The subscription fee for the services of Account W3"],
  "link": "http://bill.navixy.com/xK1QEYK"
}
```

* `order_id` - int. Unique bill ID.
* `created` - [date/time](/docs/navixy-api/user-api/backend-api.md#data-types). When the bill created.
* `sum` - float. A bill sum in default currency of the panel.
* `status` - [enum](/docs/navixy-api/user-api/backend-api.md#data-types). Bill order status. Can be one of:
  * `created` – but not settled.
  * `settled`.
  * `canceled`.
* `positions` - string array. List of position names. Usually contains one element for a bill.
* `link` - string. URL to order.

## API actions

API path: `/bill`.

### create

Creates a new bill for the user.

**required sub-user rights**: `payment_create`.

#### Parameters

| name  | description                                  | type   |
| ----- | -------------------------------------------- | ------ |
| payer | Some payer description.                      | string |
| sum   | A bill sum in default currency of the panel. | double |

#### Example

cURL

```sh
curl -X POST 'https://api.eu.navixy.com/v2/bill/create' \
    -H 'Content-Type: application/json' \
    -d '{"hash": "22eac1c27af4be7b9d04da2ce1af111b", "payer": "Jon Doe", "sum": 100.0}'
```

#### Response

```json
{
  "success": true,
  "value": 6421
}
```

* `value` - int. Created bill ID.

#### Errors

* 222 – Plugin not found - when plugin **29** not available for user.

### list

Shows list of bills with their parameters in array.

**required sub-user rights**: `payment_create`.

#### Parameters

| name   | description                                                                 | type |
| ------ | --------------------------------------------------------------------------- | ---- |
| limit  | Optional. A maximum number of bills in list. Maximum and default is 10 000. | int  |
| offset | Optional. Get bills starting from `offset`. Default 0.                      | int  |

#### Examples

{% tabs %}
{% tab title="cURL" %}

```sh
curl -X POST 'https://api.eu.navixy.com/v2/bill/list' \
    -H 'Content-Type: application/json' \
    -d '{"hash": "22eac1c27af4be7b9d04da2ce1af111b"}'
```

{% endtab %}

{% tab title="HTTP GET" %}

```http
https://api.eu.navixy.com/v2/bill/list?hash=a6aa75587e5c59c32d347da438505fc3
```

{% endtab %}
{% endtabs %}

#### Response

```json
{
  "success": true,
  "count": 7,
  "bills": [
    {
      "order_id": 63602,
      "created": "2012-03-05 11:55:03",
      "sum": 150.0,
      "status": "created",
      "positions": ["The subscription fee for the services of Account W3"],
      "link": "http://bill.navixy.com/xK1QEYK"
    }
  ]
}
```

* `count` - int. Total number of bills.
* `bills` - array of objects. A list of [bill objects](#bill-object).

If bill created using [/bill/create](#create) call then **positions** will contain exactly one element.

> For Standalone version base part of **link** may be changed by **billing.orders.baseUrl** config option.

#### Errors

* 222 – Plugin not found - when plugin **29** not available for user.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://navixy.com/docs/navixy-api/user-api/backend-api/resources/billing/bill.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
