v1

latestOpenAPI 3.1.02026-07-1718631.9 KB
app

ユーザーが会員登録を行う

招待コードを用いて登録した場合は、招待クーポンを付与する

post/app/users

Request body

usernamestring required

ユーザー名 (ユニーク)

firstnamestring required

名前

lastnamestring required

名字

date_of_birthstring date required

生年月日

invitation_codestring

他の人の招待コード

Example request

{
  "username": "Collier6283",
  "firstname": "和治",
  "lastname": "大森",
  "date_of_birth": "2000-01-01",
  "invitation_code": "5c4a695f66d598e"
}

Response

ユーザー登録が完了した

idstring required

ユーザーID

invitation_codestring required

自分の招待コード

Example response

{
  "id": "01JDJ23EA0C0P2KFPTXDKTZMNM",
  "invitation_code": "5c4a695f66d598e"
}