OBJECT

AccountLink

The information for a third-party account link.

link GraphQL Schema definition

1type AccountLink {
2
3# The account links UUID
4id: ID!
5
6# The name displayed on the third-party account site.
7displayName: String
8
9# The type of account for the account link (usually a publisher name).
10accountType: String!
11
12# The current state of the account link.
13status: AccountLinkStatus!
14
15}