GET
/
iam
/
admin
/
sellers
/
{sellerId}
Get seller's details
curl --request GET \
  --url https://api.gcore.com/iam/admin/sellers/{sellerId} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "email": "jsmith@example.com",
  "full_name": "<string>",
  "phone": "<string>",
  "reseller_name": "<string>",
  "company": "<string>",
  "date_joined": "<string>",
  "activated": true,
  "deleted": true
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

sellerId
integer
required

Seller's ID.

Response

200 - application/json

OK.

email
string<email>
required

Seller's email address.

Maximum length: 150
full_name
string
required

Seller's full name.

Maximum length: 255
id
integer

Seller's ID.

phone
string

Seller's phone number.

Maximum length: 30
reseller_name
string

Seller's reseller's name.

company
string

Seller's company.

date_joined
string

Registration date.

activated
boolean

Show the activation status of seller's account:

  • true – a seller has clicked on the activation link and has set up a password;
  • false – a seller hasn't clicked on the activation link.
deleted
boolean

Show the deletion status of seller's account:

  • true – a seller has been deleted;
  • false – a seller is active.