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.
- : Boolean!
- # Unique identifier of entity. Must match with Application id.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Contact email associated with this API access. Used for credential change
- # notifications.
- : String
- # Whether this API access can authenticate. Set to false to disable the
- # credentials without deleting the record; existing tokens stop working
- # immediately.
- : 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.
- : DateTime
- # Per-section access permissions (records, administration, misc) granted to this
- # API access. Determines which entities and operations the credentials can read or
- # write.
- : ApiAccessPermissions
- # Authentication type of this API access (e.g. standard API key vs. OAuth client).
- # Set automatically on create and cannot be changed.
- : ApiAccessTypeEnum!
- # Name for the api access.
- : String
- # Formerly API Access.
- : String
- # Formerly API Password. Only available during create or for migrated legacy
- # access. Otherwise, it is null.
- : String
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }