OBJECT

AccountLinkConfig

Account linking configuration for a third party.

link GraphQL Schema definition

1type AccountLinkConfig {
2
3# The type of account for the account link (usually a publisher name). Only
4# present for third parties where account links are stored by Twitch Prime
5accountType: String
6
7# The URL to direct the user to link their game account to their Twitch Prime
8# account.
9linkingUrl: String
10
11# Instructions for linking an account
12linkingInstructions: [String!]
13
14# Confirmation text for a user who has linked
15linkedAccountConfirmation: String
16
17# A URL to the page where users can manage and remove their third party account
18# link
19thirdPartyAccountManagementUrl: String
20
21}