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

> Retrieve a single Reseller record by its Id.

A **Reseller** represents a partner organisation that resells Nexudus services or manages multiple business locations on behalf of their clients.

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

## Path Parameters

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

## Code Examples

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

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

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

## Response

### 200

<ResponseField name="Name" type="string">
  The name value for this reseller.
</ResponseField>

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

<ResponseField name="UserFullName" type="string">
  Display name of the linked user full (read-only).
</ResponseField>

<ResponseField name="UserEmail" type="string">
  The user email value for this reseller.
</ResponseField>

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

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

<ResponseField name="AgreedTermsOn" type="string">
  Date/time value for agreed terms on.
</ResponseField>

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

<ResponseField name="AutoApprovePayouts" type="boolean">
  Whether auto approve payouts is enabled.
</ResponseField>

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

<ResponseField name="ProfileIsPublic" type="boolean">
  Whether profile is public is enabled.
</ResponseField>

<ResponseField name="AvatarFileName" type="string">
  Current file name of the avatar (read-only; upload via the corresponding URL field).
</ResponseField>

<ResponseField name="NewAvatarUrl" type="string">
  URL of a new file to upload as the avatar.
</ResponseField>

<ResponseField name="ClearAvatarFile" type="boolean">
  Set to true to remove the current avatar file.
</ResponseField>

<ResponseField name="LogoFileName" type="string">
  Current file name of the logo (read-only; upload via the corresponding URL field).
</ResponseField>

<ResponseField name="NewLogoUrl" type="string">
  URL of a new file to upload as the logo.
</ResponseField>

<ResponseField name="ClearLogoFile" type="boolean">
  Set to true to remove the current logo file.
</ResponseField>

<ResponseField name="Area" type="string">
  The area value for this reseller.
</ResponseField>

<ResponseField name="OperatesIn" type="string">
  The operates in value for this reseller.
</ResponseField>

<ResponseField name="WebAddress" type="string">
  The web address value for this reseller.
</ResponseField>

<ResponseField name="Email" type="string">
  The email value for this reseller.
</ResponseField>

<ResponseField name="ProfileSummary" type="string">
  The profile summary value for this reseller.
</ResponseField>

<ResponseField name="PhoneNumber" type="string">
  The phone number value for this reseller.
</ResponseField>

<ResponseField name="Testimonial1" type="string">
  The testimonial1 value for this reseller.
</ResponseField>

<ResponseField name="Testimonial1Author" type="string">
  The testimonial1 author value for this reseller.
</ResponseField>

<ResponseField name="Testimonial2" type="string">
  The testimonial2 value for this reseller.
</ResponseField>

<ResponseField name="Testimonial2Author" type="string">
  The testimonial2 author value for this reseller.
</ResponseField>

<ResponseField name="StripeAccountId" type="string">
  ID of the stripe account associated with this record.
</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}
{
  "Name": "",
  "UserId": 0,
  "UserFullName": null,
  "UserEmail": null,
  "CurrencyId": 0,
  "CurrencyCode": null,
  "AgreedTermsOn": null,
  "Approved": false,
  "AutoApprovePayouts": false,
  "NextPayoutDate": null,
  "ProfileIsPublic": false,
  "AvatarFileName": null,
  "NewAvatarUrl": null,
  "ClearAvatarFile": null,
  "LogoFileName": null,
  "NewLogoUrl": null,
  "ClearLogoFile": null,
  "Area": null,
  "OperatesIn": null,
  "WebAddress": null,
  "Email": null,
  "ProfileSummary": null,
  "PhoneNumber": null,
  "Testimonial1": null,
  "Testimonial1Author": null,
  "Testimonial2": null,
  "Testimonial2Author": null,
  "StripeAccountId": 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": "Reseller Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
