Skip to main content
GET
/
seller
Get seller account
curl --request GET \
  --url https://api.managem.co.uk/seller \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "jsmith@example.com",
  "country": "<string>",
  "defaultCurrency": "<string>",
  "detailsSubmitted": true,
  "chargesEnabled": true,
  "payoutsEnabled": true,
  "requirements": {
    "currentlyDue": [
      "<string>"
    ],
    "pastDue": [
      "<string>"
    ],
    "eventuallyDue": [
      "<string>"
    ],
    "disabledReason": "<string>"
  },
  "businessProfile": {
    "name": "<string>",
    "url": "<string>",
    "supportEmail": "jsmith@example.com",
    "supportPhone": "<string>"
  },
  "settings": {
    "payouts": {
      "schedule": {
        "delayDays": 123,
        "interval": "daily"
      },
      "statementDescriptor": "<string>"
    },
    "dashboard": {
      "timezone": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Seller account

Stripe account information for a seller, sourced from the Stripe API

id
string
required

Unique identifier for the seller account

email
string<email>
required

Seller's contact email address

country
string
required

Two-letter ISO country code of the seller

Required string length: 2
defaultCurrency
string
required

Default currency code used by the seller (ISO 4217)

detailsSubmitted
boolean
required

Indicates if the seller has completed onboarding

chargesEnabled
boolean
required

Whether the seller is able to accept charges

payoutsEnabled
boolean
required

Whether the seller is able to receive payouts

requirements
object
required

Details on account verification and compliance requirements

businessProfile
object
required

Business profile information provided by the seller

settings
object
required

Seller-specific settings and preferences