Skip to main content
GET
/
api
/
sys
/
resellerpayouts
/
{id}
{
  "ResellerId": 123,
  "ResellerUserId": 123,
  "ResellerUserFullName": "<string>",
  "ResellerCurrencyId": 123,
  "ResellerCurrencyCode": "<string>",
  "Approved": true,
  "PaidOut": true,
  "PaidOutDate": "<string>",
  "PaidOutReference": "<string>",
  "Amount": 123,
  "ErrorDescription": "<string>",
  "LastPaymentAttempt": "<string>",
  "ResellerInvoiceDataFileName": "<string>",
  "NewResellerInvoiceDataUrl": "<string>",
  "ClearResellerInvoiceDataFile": true,
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}

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 ResellerPayout-Read role.

Path Parameters

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

Code Examples

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

Response

200

ResellerId
integer
Reseller Id.
ResellerUserId
integer
Reseller User Id.
ResellerUserFullName
string
Reseller User Full Name.
ResellerCurrencyId
integer
Reseller Currency Id.
ResellerCurrencyCode
string
Reseller Currency Code.
Approved
boolean
Approved.
PaidOut
boolean
Paid Out.
PaidOutDate
string
Paid Out Date.
PaidOutReference
string
Paid Out Reference.
Amount
number
Amount.
ErrorDescription
string
Error Description.
LastPaymentAttempt
string
Last Payment Attempt.
ResellerInvoiceDataFileName
string
Reseller Invoice Data File Name.
NewResellerInvoiceDataUrl
string
New Reseller Invoice Data Url.
ClearResellerInvoiceDataFile
boolean
Clear Reseller Invoice Data File.
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,
  "ResellerUserId": null,
  "ResellerUserFullName": null,
  "ResellerCurrencyId": null,
  "ResellerCurrencyCode": null,
  "Approved": false,
  "PaidOut": false,
  "PaidOutDate": null,
  "PaidOutReference": null,
  "Amount": 0,
  "ErrorDescription": null,
  "LastPaymentAttempt": null,
  "ResellerInvoiceDataFileName": null,
  "NewResellerInvoiceDataUrl": null,
  "ClearResellerInvoiceDataFile": 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": "ResellerPayout Example",
  "LocalizationDetails": null,
  "CustomFields": null
}