Skip to main content
GET
/
api
/
sys
/
resellers
/
{id}
{
  "Name": "<string>",
  "UserId": 123,
  "UserFullName": "<string>",
  "UserEmail": "<string>",
  "CurrencyId": 123,
  "CurrencyCode": "<string>",
  "AgreedTermsOn": "<string>",
  "Approved": true,
  "AutoApprovePayouts": true,
  "NextPayoutDate": "<string>",
  "ProfileIsPublic": true,
  "AvatarFileName": "<string>",
  "NewAvatarUrl": "<string>",
  "ClearAvatarFile": true,
  "LogoFileName": "<string>",
  "NewLogoUrl": "<string>",
  "ClearLogoFile": true,
  "Area": "<string>",
  "OperatesIn": "<string>",
  "WebAddress": "<string>",
  "Email": "<string>",
  "ProfileSummary": "<string>",
  "PhoneNumber": "<string>",
  "Testimonial1": "<string>",
  "Testimonial1Author": "<string>",
  "Testimonial2": "<string>",
  "Testimonial2Author": "<string>",
  "StripeAccountId": "<string>",
  "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 Reseller-Read role.

Path Parameters

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

Code Examples

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

Response

200

Name
string
Name.
UserId
integer
User Id.
UserFullName
string
User Full Name.
UserEmail
string
User Email.
CurrencyId
integer
Currency Id.
CurrencyCode
string
Currency Code.
AgreedTermsOn
string
Agreed Terms On.
Approved
boolean
Approved.
AutoApprovePayouts
boolean
Auto Approve Payouts.
NextPayoutDate
string
Next Payout Date.
ProfileIsPublic
boolean
Profile Is Public.
AvatarFileName
string
Avatar File Name.
NewAvatarUrl
string
New Avatar Url.
ClearAvatarFile
boolean
Clear Avatar File.
LogoFileName
string
Logo File Name.
NewLogoUrl
string
New Logo Url.
ClearLogoFile
boolean
Clear Logo File.
Area
string
Area.
OperatesIn
string
Operates In.
WebAddress
string
Web Address.
Email
string
Email.
ProfileSummary
string
Profile Summary.
PhoneNumber
string
Phone Number.
Testimonial1
string
Testimonial1.
Testimonial1Author
string
Testimonial1Author.
Testimonial2
string
Testimonial2.
Testimonial2Author
string
Testimonial2Author.
StripeAccountId
string
Stripe Account Id.
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
{
  "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
}