OBJECT

ApiAccessEntity

link GraphQL Schema definition

  • type ApiAccessEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity. Must match with Application id.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Contact email associated with this API access. Used for credential change
  • # notifications.
  • email: String
  • # Whether this API access can authenticate. Set to false to disable the
  • # credentials without deleting the record; existing tokens stop working
  • # immediately.
  • isActive: Boolean
  • # Timestamp of the most recent successful authentication using this API access.
  • # Updated automatically on each use; empty for credentials that have never been
  • # used.
  • lastUsed: DateTime
  • # Per-section access permissions (records, administration, misc) granted to this
  • # API access. Determines which entities and operations the credentials can read or
  • # write.
  • permissions: ApiAccessPermissions
  • # Authentication type of this API access (e.g. standard API key vs. OAuth client).
  • # Set automatically on create and cannot be changed.
  • type: ApiAccessTypeEnum!
  • # Name for the api access.
  • name: String
  • # Formerly API Access.
  • username: String
  • # Formerly API Password. Only available during create or for migrated legacy
  • # access. Otherwise, it is null.
  • plainPassword: String
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }