Skip to main content

PlatformToken

Represents a PlatformToken, which is used for authentication and authorization when accessing the Altium platform.

interface PlatformToken {
createdAt: DateTime!
createdBy: GloUser!
deletedAt: DateTime
deletedBy: GloUser
description: String!
expiresAt: DateTime
name: String!
tokenId: String!
updatedAt: DateTime!
updatedBy: GloUser!
}

Fields

PlatformToken.createdAt ● DateTime! non-null scalar

The date-time that the PlatformToken was created.

PlatformToken.createdBy ● GloUser! non-null object

The GloUser that created the PlatformToken.

PlatformToken.deletedAt ● DateTime scalar

The date-time that the PlatformToken was deleted. Null if the PlatformToken has not been deleted.

PlatformToken.deletedBy ● GloUser object

The GloUser that deleted the PlatformToken.

PlatformToken.description ● String! non-null scalar

The description of the PlatformToken.

PlatformToken.expiresAt ● DateTime scalar

The date-time that the PlatformToken expires.

PlatformToken.name ● String! non-null scalar

The name of the PlatformToken.

PlatformToken.tokenId ● String! non-null scalar

The identifier of the PlatformToken.

PlatformToken.updatedAt ● DateTime! non-null scalar

The date-time that the PlatformToken was last updated.

PlatformToken.updatedBy ● GloUser! non-null object

The GloUser that last updated the PlatformToken.