POST
/
iam
/
admin
/
sellers
Create a new seller
curl --request POST \
  --url https://api.gcore.com/iam/admin/sellers \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "full_name": "<string>",
  "phone": "<string>"
}'
{
  "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

Body

application/json

Response

200
application/json

OK.

The response is of type object.