Skip to main content
GET
/
api
/
sys
/
reselleraccounts
/
{id}
Get one ResellerAccount
curl --request GET \
  --url https://spaces.nexudus.com/api/sys/reselleraccounts/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "ResellerId": 123,
  "ResellerCurrencyId": 123,
  "ResellerCurrencyCode": "<string>",
  "BusinessId": 123,
  "BusinessName": "<string>",
  "BusinessPreAuthId": "<string>",
  "BusinessLast4Digits": "<string>",
  "BusinessPreAuthLastError": "<string>",
  "BusinessSuspended": true,
  "BusinessNextInvoice": "<string>",
  "BusinessTrialExpireDate": "<string>",
  "BusinessSupportTier": "<string>",
  "BusinessOnBoardingTier": "<string>",
  "Approved": true,
  "ComissionPercentage": 123,
  "NextPayoutDate": "<string>",
  "ExpirationDate": "<string>",
  "LastAccess": "<string>",
  "LastInvoiceAmount": 123,
  "AverageInvoiceAmount": 123,
  "CanManageAccount": true,
  "ProvidesFirstLineSupport": true,
  "Notes": "<string>",
  "ScopeOfWork": "<string>",
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}
A ResellerAccount represents the financial account associated with a reseller, tracking commissions, payouts, and billing between Nexudus and the reseller partner.

Authentication

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.

Path Parameters

id
integer
required
The Id of the ResellerAccount record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/sys/reselleraccounts/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

ResellerId
integer
ID of the reseller linked to this record.
ResellerCurrencyId
integer
ID of the reseller currency associated with this record.
ResellerCurrencyCode
string
The reseller currency code value for this reseller account.
BusinessId
integer
ID of the business linked to this record.
BusinessName
string
Display name of the linked business (read-only).
BusinessPreAuthId
string
ID of the business pre auth associated with this record.
BusinessLast4Digits
string
The business last4 digits value for this reseller account.
BusinessPreAuthLastError
string
The business pre auth last error value for this reseller account.
BusinessSuspended
boolean
Whether business suspended is enabled.
BusinessNextInvoice
string
Date/time value for business next invoice.
BusinessTrialExpireDate
string
Date/time value for business trial expire date.
BusinessSupportTier
string
The business support tier value for this reseller account.
BusinessOnBoardingTier
string
The business on boarding tier value for this reseller account.
Approved
boolean
Whether approved is enabled.
ComissionPercentage
number
The comission percentage value for this reseller account.
NextPayoutDate
string
Date/time value for next payout date.
ExpirationDate
string
Date/time value for expiration date.
LastAccess
string
Date/time value for last access.
LastInvoiceAmount
number
The last invoice amount value for this reseller account.
AverageInvoiceAmount
number
The average invoice amount value for this reseller account.
CanManageAccount
boolean
Whether can manage account is enabled.
ProvidesFirstLineSupport
boolean
Whether provides first line support is enabled.
Notes
string
Optional notes or comments about this reseller account.
ScopeOfWork
string
The scope of work value for this reseller account.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "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
}