v2

latestOpenAPI 3.0.3Apache 2.02026-07-31158109678.6 KB
institutions

Create new Institution Account

Create a new Account by sending account information. When the institution_user_id is provided, no verification email will be sent. The email_verified flag will automatically be set to true. If the institution_user_id is not provided, a verification email will be sent. The email_verified flag will be set to true once the account is created.

post/account/institution/accounts

Request body

emailstring required

Email of account

first_namestring

First Name

last_namestring required

Last Name

group_idinteger

Not applicable to regular users. This field is reserved to institutions/publishers with access to assign to specific groups

institution_user_idstring

Institution user id

symplectic_user_idstring

Symplectic user id

quotainteger

Account quota

is_activeboolean

Is account active

Example request

{
  "email": "johndoe@example.com",
  "first_name": "John",
  "last_name": "Doe",
  "institution_user_id": "johndoe",
  "symplectic_user_id": "johndoe",
  "quota": 1000
}

Response

Created

account_idinteger required

ID of created account

Example response

{
  "account_id": 33334444
}