> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one BusinessCharge

> Retrieve a single BusinessCharge record by its Id.

A **BusinessCharge** represents a charge issued by Nexudus to a specific location for platform services or subscription fees. Only Nexudus staff can create or manage these charges.

Charges can be one-off or recurring. Set `Recurrent` to `true` and provide `RepeatFrom` and `RepeatUntil` to define the recurrence window.

A charge moves through an approval workflow before it is invoiced. Use `ApprovedByBusiness` and `ApprovedBySender` to reflect the approval state. Once invoiced, the `Invoiced` flag will be set and `InvoicedOn` will record the date.

## Authentication

<Note>
  This endpoint requires OAuth2 authentication. Include a valid bearer token in the `Authorization` header.
  The authenticated user must be a full unrestricted administrator or have the **`BusinessCharge-Read`** role.
</Note>

## Path Parameters

<ParamField path="id" type="integer" required>
  The Id of the BusinessCharge record to retrieve.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/billing/businesscharges/87654321" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/billing/businesscharges/87654321',
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

  const record = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://spaces.nexudus.com/api/billing/businesscharges/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

  record = response.json()
  ```
</CodeGroup>

## Response

### 200

<ResponseField name="BusinessId" type="integer">
  Business Id.
</ResponseField>

<ResponseField name="ApplicationId" type="integer">
  Application Id.
</ResponseField>

<ResponseField name="Description" type="string">
  Human-readable description of what this charge is for.
</ResponseField>

<ResponseField name="CallBackUrl" type="string">
  URL that Nexudus will call back once the charge is processed or its status changes.
</ResponseField>

<ResponseField name="DueDate" type="string">
  Date by which the charge must be paid.
</ResponseField>

<ResponseField name="PercentageDiscount" type="number">
  Percentage discount to apply to the charge amount (0–100).
</ResponseField>

<ResponseField name="TotalAmount" type="number">
  Total amount of the charge before tax.
</ResponseField>

<ResponseField name="TaxAmount" type="number">
  Tax amount applied to this charge.
</ResponseField>

<ResponseField name="Invoiced" type="boolean">
  True once the charge has been added to an invoice.
</ResponseField>

<ResponseField name="InvoicedOn" type="string">
  Date and time when the charge was included in an invoice. Set automatically by Nexudus.
</ResponseField>

<ResponseField name="ApprovedByBusiness" type="boolean">
  True when the business (location) has approved the charge. Both parties must approve before the charge can be invoiced.
</ResponseField>

<ResponseField name="ApprovedBySender" type="boolean">
  True when Nexudus (the sender) has approved the charge. Both parties must approve before the charge can be invoiced.
</ResponseField>

<ResponseField name="Recurrent" type="boolean">
  Set to true to make this a recurring charge. Use with `RepeatFrom` and `RepeatUntil` to define the recurrence window.
</ResponseField>

<ResponseField name="RepeatFrom" type="string">
  Start date of the recurrence window. Required when `Recurrent` is true.
</ResponseField>

<ResponseField name="RepeatUntil" type="string">
  End date of the recurrence window. The charge will not be issued after this date.
</ResponseField>

<ResponseField name="Id" type="integer">
  Unique record identifier.
</ResponseField>

<ResponseField name="UniqueId" type="string">
  UUID of the record.
</ResponseField>

<ResponseField name="CreatedOn" type="string">
  Date and time the record was created (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedOn" type="string">
  Date and time the record was last updated (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedBy" type="string">
  Email of the user who last updated this record.
</ResponseField>

<ResponseField name="IsNew" type="boolean">
  Whether the record was recently created.
</ResponseField>

<ResponseField name="SystemId" type="string">
  External system identifier.
</ResponseField>

```json Example Response theme={null}
{
  "BusinessId": 0,
  "ApplicationId": null,
  "Description": "",
  "CallBackUrl": "",
  "DueDate": null,
  "PercentageDiscount": 0,
  "TotalAmount": 0,
  "TaxAmount": 0,
  "Invoiced": false,
  "InvoicedOn": null,
  "ApprovedByBusiness": false,
  "ApprovedBySender": false,
  "Recurrent": false,
  "RepeatFrom": null,
  "RepeatUntil": null,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "BusinessCharge Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
