Skip to main content

AuthorizedUser

An authorized user that can access the MONEI dashboard. One user can have access to multiple accounts with different access levels.

type AuthorizedUser {
userEmail: String!
id: ID!
accessLevel: AuthorizedUserAccessLevel!
storeId: ID
status: AuthorizedUserStatus!
lastLoginAt: String
createdAt: String!
updatedAt: String
}

Fields

AuthorizedUser.userEmail ● String! non-null scalar

Email address of the authorized user

AuthorizedUser.id ● ID! non-null scalar

ID of the authorized user

AuthorizedUser.accessLevel ● AuthorizedUserAccessLevel! non-null enum

Access level for the authorized user

AuthorizedUser.storeId ● ID scalar

Limit access to a specific store

AuthorizedUser.status ● AuthorizedUserStatus! non-null enum

Status of the authorized user

AuthorizedUser.lastLoginAt ● String scalar

Last login date

AuthorizedUser.createdAt ● String! non-null scalar

Creation date, in ISO 8601 format

AuthorizedUser.updatedAt ● String scalar

Updated date, in ISO 8601 format

Returned By

createAuthorizedUser mutation ● updateAuthorizedUser mutation

Member Of

AuthorizedUsersConnection object