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

> Retrieve a single ResellerAccount record by its Id.

A **ResellerAccount** represents the financial account associated with a reseller, tracking commissions, payouts, and billing between Nexudus and the reseller partner.

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

## Path Parameters

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

## Code Examples

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

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

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

## Response

### 200

<ResponseField name="ResellerId" type="integer">
  ID of the reseller linked to this record.
</ResponseField>

<ResponseField name="ResellerCurrencyId" type="integer">
  ID of the reseller currency associated with this record.
</ResponseField>

<ResponseField name="ResellerCurrencyCode" type="string">
  The reseller currency code value for this reseller account.
</ResponseField>

<ResponseField name="BusinessId" type="integer">
  ID of the business linked to this record.
</ResponseField>

<ResponseField name="BusinessName" type="string">
  Display name of the linked business (read-only).
</ResponseField>

<ResponseField name="BusinessPreAuthId" type="string">
  ID of the business pre auth associated with this record.
</ResponseField>

<ResponseField name="BusinessLast4Digits" type="string">
  The business last4 digits value for this reseller account.
</ResponseField>

<ResponseField name="BusinessPreAuthLastError" type="string">
  The business pre auth last error value for this reseller account.
</ResponseField>

<ResponseField name="BusinessSuspended" type="boolean">
  Whether business suspended is enabled.
</ResponseField>

<ResponseField name="BusinessNextInvoice" type="string">
  Date/time value for business next invoice.
</ResponseField>

<ResponseField name="BusinessTrialExpireDate" type="string">
  Date/time value for business trial expire date.
</ResponseField>

<ResponseField name="BusinessSupportTier" type="string">
  The business support tier value for this reseller account.
</ResponseField>

<ResponseField name="BusinessOnBoardingTier" type="string">
  The business on boarding tier value for this reseller account.
</ResponseField>

<ResponseField name="Approved" type="boolean">
  Whether approved is enabled.
</ResponseField>

<ResponseField name="ComissionPercentage" type="number">
  The comission percentage value for this reseller account.
</ResponseField>

<ResponseField name="NextPayoutDate" type="string">
  Date/time value for next payout date.
</ResponseField>

<ResponseField name="ExpirationDate" type="string">
  Date/time value for expiration date.
</ResponseField>

<ResponseField name="LastAccess" type="string">
  Date/time value for last access.
</ResponseField>

<ResponseField name="LastInvoiceAmount" type="number">
  The last invoice amount value for this reseller account.
</ResponseField>

<ResponseField name="AverageInvoiceAmount" type="number">
  The average invoice amount value for this reseller account.
</ResponseField>

<ResponseField name="CanManageAccount" type="boolean">
  Whether can manage account is enabled.
</ResponseField>

<ResponseField name="ProvidesFirstLineSupport" type="boolean">
  Whether provides first line support is enabled.
</ResponseField>

<ResponseField name="Notes" type="string">
  Optional notes or comments about this reseller account.
</ResponseField>

<ResponseField name="ScopeOfWork" type="string">
  The scope of work value for this reseller account.
</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}
{
  "ResellerId": 0,
  "ResellerCurrencyId": null,
  "ResellerCurrencyCode": null,
  "BusinessId": 0,
  "BusinessName": null,
  "BusinessPreAuthId": null,
  "BusinessLast4Digits": null,
  "BusinessPreAuthLastError": null,
  "BusinessSuspended": null,
  "BusinessNextInvoice": null,
  "BusinessTrialExpireDate": null,
  "BusinessSupportTier": null,
  "BusinessOnBoardingTier": null,
  "Approved": false,
  "ComissionPercentage": 0,
  "NextPayoutDate": null,
  "ExpirationDate": null,
  "LastAccess": null,
  "LastInvoiceAmount": null,
  "AverageInvoiceAmount": null,
  "CanManageAccount": false,
  "ProvidesFirstLineSupport": false,
  "Notes": null,
  "ScopeOfWork": 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": "ResellerAccount Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
