Users
Managing your own user account
Last updated
Was this helpful?
Managing your own user account
Last updated
Was this helpful?
Gets the currently signed-in user account data, requires the Scopes.ViewUser
permission
curl -L \
--url 'https://api.sellsn.io/user' \
--header 'Authorization: Bearer JWT'
{
"success": true,
"message": "text",
"data": {
"id": "text",
"dateCreated": "2025-04-03T08:10:28.032Z",
"plan": "text",
"setupCompletionState": 0,
"disabledPaymentMethods": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"email": "text",
"userName": "text",
"allowMarketplace": true,
"stores": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"dateCreated": "2025-04-03T08:10:28.032Z",
"name": "text",
"description": "text",
"url": "\n store\n ",
"customDomain": "text",
"termsOfService": "text",
"copyright": "text",
"privacyPolicy": "text",
"preferredCurrency": "text",
"isVerified": true,
"prependProductNameToReceipt": true,
"featuredProduct": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"dateCreated": "2025-04-03T08:10:28.032Z",
"name": "text",
"description": "text",
"tags": [
"text"
],
"imageNames": [
"text"
],
"cost": 1,
"type": 0,
"subscriptionPeriod": "text",
"stock": 1,
"amountSold": 1,
"ignoreOutOfStock": true,
"isPinned": true,
"isDynamic": true,
"rating": 1,
"minimumQuantity": 1,
"maximumQuantity": 1,
"order": 1,
"visibility": 0,
"likes": 1,
"customValueKeys": [
"text"
],
"store": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"dateCreated": "2025-04-03T08:10:28.032Z",
"name": "text",
"description": "text",
"url": "\n store\n ",
"customDomain": "text",
"termsOfService": "text",
"copyright": "text",
"privacyPolicy": "text",
"preferredCurrency": "text",
"isVerified": true,
"prependProductNameToReceipt": true,
"featuredProduct": "[Circular Reference]",
"visits": 1,
"reviews": 1,
"rating": 1,
"resolvedTickets": 1,
"productsSold": 1,
"theme": {
"properties": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
},
"socialMediaAccounts": {
"tikTok": "text",
"youTube": "text",
"twitter": "text",
"facebook": "text",
"discord": "text",
"telegram": "text",
"instagram": "text"
},
"profileImage": "text",
"scopes": [
"text"
],
"isDiscordBotConfigured": true,
"domain": "text"
},
"discordRoleId": 1,
"requireDiscordAuthorization": true,
"useDiscordIntegration": true
},
"visits": 1,
"reviews": 1,
"rating": 1,
"resolvedTickets": 1,
"productsSold": 1,
"theme": {
"properties": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
},
"socialMediaAccounts": {
"tikTok": "text",
"youTube": "text",
"twitter": "text",
"facebook": "text",
"discord": "text",
"telegram": "text",
"instagram": "text"
},
"profileImage": "text",
"scopes": [
"text"
],
"isDiscordBotConfigured": true,
"domain": "text"
}
],
"twoFactorEnabled": true,
"discordWebhookUrl": "text",
"lastPasswordUpdate": "2025-04-03T08:10:28.032Z",
"cashAppOptions": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"dateCreated": "2025-04-03T08:10:28.032Z",
"isEnabled": true,
"email": "text",
"verificationCode": "text",
"isAcceptingRequests": true,
"tag": "text"
},
"payPalOptions": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"dateCreated": "2025-04-03T08:10:28.032Z",
"isEnabled": true,
"isFriendsAndFamilyEnabled": true,
"isAcceptingRequests": true,
"email": "text",
"payPalEmail": "text"
},
"disabled": true,
"planExpiry": "2025-04-03T08:10:28.032Z",
"enabledCryptocurrencies": [
"text"
],
"stripeOptions": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"dateCreated": "2025-04-03T08:10:28.032Z",
"isEnabled": true,
"publishableKey": "text"
},
"ownedReferralLink": "text",
"referralLink": "text",
"atlasReports": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"dateCreated": "2025-04-03T08:10:28.032Z",
"email": "text",
"reason": "text",
"gateway": "text",
"reporter": "text",
"resolved": true,
"type": "text",
"userId": "text"
}
],
"stripeEnabled": true,
"apiKeyActive": true,
"isCryptoEnabled": true,
"isCardsToCryptoEnabled": true,
"isSumUpEnabled": true,
"isTazaEnabled": true,
"refreshAt": "2025-04-03T08:10:28.032Z"
}
}
The object was successfully returned.
Gets the current cryptocurrency balance of the signed-in user. Requires the Scopes.ViewCryptoBalance
permission
curl -L \
--url 'https://api.sellsn.io/cryptocurrency/balance' \
--header 'Authorization: Bearer JWT'
{
"success": true,
"message": "text",
"data": [
{
"cryptoCode": "text",
"available": 1,
"availableUsd": 1,
"pending": 1,
"pendingUsd": 1
}
]
}
The object was successfully returned.
curl -L \
--url 'https://api.sellsn.io/cryptocurrency/enabled' \
--header 'Authorization: Bearer JWT'
{
"success": true,
"message": "text",
"data": [
"text"
]
}
curl -L \
--url 'https://api.sellsn.io/user/referral-stats' \
--header 'Authorization: Bearer JWT'
{
"success": true,
"message": "text",
"data": {
"amountRegistered": 1,
"amountSubscribed": 1,
"amountEarned": 1
}
}