"description":"View information about the current user",
"operationId":"Users_GetCurrentUser",
"responses":{
"200":{
"description":"Information about the current user",
"content":{
"application/json":{
"schema":{
"$ref":"#/components/schemas/ApplicationUserData"
}
}
}
}
},
"security":[
{
"API Key":[
"btcpay.user.canviewprofile"
],
"Basic":[]
}
]
}
},
"/api/v1/users":{
"post":{
"tags":[
"Users"
],
"summary":"Create user",
"description":"Create a new user.\n\nThis operation can be called without authentication in any of this cases:\n* There is not any administrator yet on the server,\n* The subscriptions are not disabled in the server's policies.\n\nIf the first administrator is created by this call, subscriptions are automatically disabled.",
"requestBody":{
"x-name":"request",
"content":{
"application/json":{
"schema":{
"type":"object",
"additionalProperties":false,
"properties":{
"email":{
"type":"string",
"description":"The email of the new user",
"nullable":false
},
"password":{
"type":"string",
"description":"The password of the new user"
},
"isAdministrator":{
"type":"boolean",
"description":"Make this user administrator (only if you have the `unrestricted` permission of a server administrator)",
"nullable":true,
"default":false
}
}
}
}
},
"required":true,
"x-position":1
},
"responses":{
"201":{
"description":"Information about the new user",
"content":{
"application/json":{
"schema":{
"$ref":"#/components/schemas/ApplicationUserData"
}
}
}
},
"400":{
"description":"A list of errors that occurred when creating the user",
"description":"If you need to authenticate for this endpoint (ie. the server settings policies lock subscriptions and that an admin already exists)"
},
"403":{
"description":"If you are authenticated but forbidden to create a new user (ie. you don't have the `unrestricted` permission on a server administrator or if you are not administrator and registrations are disabled in the server's policies)"
},
"429":{
"description":"DDoS protection if you are creating more than 2 accounts every minutes (non-admin only)"