> ## 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 CoworkerExtraService

> Retrieve a single CoworkerExtraService record by its Id.

A **CoworkerExtraService** records a charge or credit assigned to a customer. It covers three use cases:

* **Booking charges** — charges associated with bookings (e.g., meeting room usage fees). These are linked to a specific booking via `BookingId` and track the resource, time range, and price.
* **Time credit** — booking time allowances for specific resource types. Customers can spend these credits when booking resources of the matching type. The unit of credit depends on the `ChargePeriod` of the linked extra service (minutes, days, uses, etc.). `TotalUses` and `RemainingUses` track the allowance.
* **Printing credit** — credits for printing integrations such as PaperCut or Ezeep. The linked extra service has `IsPrintingCredit = true`. `TotalUses` and `RemainingUses` track the number of print jobs or pages available.

Records can be created manually or added automatically from a plan (tariff). When `IsFromTariff` is `true`, the record was provisioned by a customer's contract (CoworkerContract) and is linked via `CoworkerContractUniqueId`.

## 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 **`CoworkerExtraService-Read`** role.
</Note>

## Path Parameters

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

## Code Examples

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

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/billing/coworkerextraservices/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/coworkerextraservices/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

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

## Response

### 200

<ResponseField name="CoworkerId" type="integer">
  Coworker Id.
</ResponseField>

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

<ResponseField name="ExtraServiceId" type="integer">
  Extra Service Id.
</ResponseField>

<ResponseField name="ExtraServiceName" type="string">
  Name of the linked extra service.
</ResponseField>

<ResponseField name="ExtraServiceCurrencyCode" type="string">
  Currency code of the linked extra service (e.g., USD, EUR).
</ResponseField>

<ResponseField name="ExtraServiceIsPrintingCredit" type="boolean">
  True if the linked extra service is a printing credit (PaperCut/Ezeep). False for booking time credit.
</ResponseField>

<ResponseField name="Description" type="string">
  Free-text description of this charge or credit.
</ResponseField>

<ResponseField name="Notes" type="string">
  Internal notes.
</ResponseField>

<ResponseField name="RemainingUses" type="integer">
  Remaining credit (time or printing) the customer can still use.
</ResponseField>

<ResponseField name="TotalUses" type="integer">
  Total credit originally allocated (time or printing). Unit depends on the ChargePeriod of the linked extra service.
</ResponseField>

<ResponseField name="Free" type="boolean">
  Whether this charge or credit is free (no cost to the customer).
</ResponseField>

<ResponseField name="Price" type="number">
  Price charged for this extra service.
</ResponseField>

<ResponseField name="LastMinutePriceAdjustment" type="number">
  Price adjustment applied for last-minute bookings.
</ResponseField>

<ResponseField name="DynamicPriceAdjustment" type="number">
  Price adjustment applied by demand-based dynamic pricing.
</ResponseField>

<ResponseField name="PriceFactorLastMinute" type="number">
  Multiplier applied for last-minute booking pricing.
</ResponseField>

<ResponseField name="PriceFactorDemand" type="number">
  Multiplier applied for demand-based pricing.
</ResponseField>

<ResponseField name="ValidFrom" type="string">
  Date from which this credit becomes usable.
</ResponseField>

<ResponseField name="ExpireDate" type="string">
  Date when this credit expires and can no longer be used.
</ResponseField>

<ResponseField name="DueDate" type="string">
  Payment due date for the charge.
</ResponseField>

<ResponseField name="PurchaseOrder" type="string">
  Purchase order.
</ResponseField>

<ResponseField name="ChargePeriod" type="integer">
  Unit of measurement for time credit (Minutes, Days, Weeks, Months, Uses, FourWeekMonths).
</ResponseField>

<ResponseField name="Invoiced" type="boolean">
  Whether this charge has already been invoiced.
</ResponseField>

<ResponseField name="InvoiceDate" type="string">
  Invoice date.
</ResponseField>

<ResponseField name="IsFromTariff" type="boolean">
  Whether this credit was automatically provisioned from the customer's plan (tariff).
</ResponseField>

<ResponseField name="TariffTimePassUniqueId" type="string">
  Links this credit back to the time pass definition in the plan.
</ResponseField>

<ResponseField name="CoworkerProductUniqueId" type="string">
  Links this credit back to the customer product that provisioned it.
</ResponseField>

<ResponseField name="BookingUniqueId" type="string">
  Unique ID of the booking that generated this charge.
</ResponseField>

<ResponseField name="AutomaticallyAdded" type="boolean">
  Whether this record was automatically created (e.g., from a booking or plan renewal).
</ResponseField>

<ResponseField name="InvoiceThisCoworker" type="boolean">
  Invoice the customer directly instead of the team or company paying member.
</ResponseField>

<ResponseField name="DiscountCode" type="string">
  Discount code.
</ResponseField>

<ResponseField name="CoworkerDiscountUniqueId" type="string">
  Unique ID of the discount applied to this charge.
</ResponseField>

<ResponseField name="DiscountAmount" type="number">
  Amount discounted from the price.
</ResponseField>

<ResponseField name="BookingId" type="integer">
  ID of the booking that generated this charge.
</ResponseField>

<ResponseField name="BookingFromTime" type="string">
  Start time of the booking that generated this charge.
</ResponseField>

<ResponseField name="BookingToTime" type="string">
  End time of the booking that generated this charge.
</ResponseField>

<ResponseField name="BookingResourceName" type="string">
  Name of the resource booked (e.g., meeting room name).
</ResponseField>

<ResponseField name="CoworkerContractUniqueId" type="string">
  Links this credit back to the customer contract that provisioned it.
</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}
{
  "CoworkerId": 0,
  "BusinessId": 0,
  "ExtraServiceId": 0,
  "ExtraServiceName": null,
  "ExtraServiceCurrencyCode": null,
  "ExtraServiceIsPrintingCredit": false,
  "Description": null,
  "Notes": null,
  "RemainingUses": 0,
  "TotalUses": 0,
  "Free": false,
  "Price": null,
  "LastMinutePriceAdjustment": null,
  "DynamicPriceAdjustment": null,
  "PriceFactorLastMinute": null,
  "PriceFactorDemand": null,
  "ValidFrom": null,
  "ExpireDate": null,
  "DueDate": null,
  "PurchaseOrder": null,
  "ChargePeriod": 0,
  "Invoiced": false,
  "InvoiceDate": null,
  "IsFromTariff": false,
  "TariffTimePassUniqueId": null,
  "CoworkerProductUniqueId": null,
  "BookingUniqueId": null,
  "AutomaticallyAdded": false,
  "InvoiceThisCoworker": false,
  "DiscountCode": null,
  "CoworkerDiscountUniqueId": null,
  "DiscountAmount": null,
  "BookingId": null,
  "BookingFromTime": null,
  "BookingToTime": null,
  "BookingResourceName": null,
  "CoworkerContractUniqueId": 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": "CoworkerExtraService Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
