v2

latestOpenAPI 3.0.3Apache 2.02026-07-31158109678.6 KB
institutions

Private Account Institution Accounts

Returns the accounts for which the account has administrative privileges (assigned and inherited).

get/account/institution/accounts

Query parameters

pageinteger

Page number. Used for pagination with page_size

page_sizeinteger

The number of results included on a page. Used for pagination with page

limitinteger

Number of results included on a page. Used for pagination with query

offsetinteger

Where to start the listing (the offset of the first result). Used for pagination with limit

is_activeinteger

Filter by active status

institution_user_idstring

Filter by institution_user_id

emailstring

Filter by email

id_lteinteger

Retrieve accounts with an ID lower or equal to the specified value

id_gteinteger

Retrieve accounts with an ID greater or equal to the specified value

Response

OK. An array of Accounts

idinteger required

Account id

first_namestring required

First Name

last_namestring required

Last Name

institution_idinteger required

Account institution

emailstring required

User email

activeinteger required

Account activity status

institution_user_idstring required

Account institution user id

quotainteger required

Total storage available to account, in bytes

used_quotainteger required

Storage used by the account, in bytes

user_idinteger required

User id associated with account, useful for example for adding the account as an author to an item

orcid_idstring required

ORCID iD associated to account

symplectic_user_idstring required

Symplectic ID associated to account

Example response

[
  {
    "id": 1495682,
    "first_name": "Doe",
    "last_name": "John",
    "institution_id": 1,
    "email": "user@domain.com",
    "institution_user_id": "1",
    "quota": 1074000000,
    "used_quota": 1074000000,
    "user_id": 1000001,
    "orcid_id": "0000-0001-2345-6789",
    "symplectic_user_id": "djohn42"
  }
]