Xsolla-logo

サーバーから新しいユーザーを登録するServer-side

post/users

Creates a new user with requested body parameters. These parameters are set as confirmed. Combination of parameters passed to the body must include at least email or phone_number parameter. The call is used only if you set up Xsolla storage.

Notice
Rate limits for server-side methods are applied to this method.

SecurityServer
Request
query Parameters
projectId
required
string <uuid>

パブリッシャーアカウントからのログインプロジェクトID。

Request Body schema: application/json
email
string

ユーザーのメールアドレス。

external_account_id
string

ゲームからのユーザーID。

phone_number
string^\+(\d){5,25}$

ユーザーの電話番号。電話番号による認証に使用されます。

phone_number_verified
boolean

Flag indicates that the phone number has been verified.

Responses
200

OK

400

無効なリクエスト

401

未認証

404

見つかりません

422

処理不可能なエンティティー

429

リクエストの回数が多すぎます

Request samples
application/json
{
  • "email": "asd123@asd123.asd",
  • "external_account_id": "1234567890asdfghjkl",
  • "phone_number": 123456789
}
Response samples
application/json
{
  • "user_id": "ff449154-7e2f-11e8-ad67-d89d67155224"
}