OBJECT

Mutation

link GraphQL Schema definition

1type Mutation {
2
3# placeOrder allows a user to create their entitlement to the given offer/content.
4placeOrder(input: PlaceOrderInput!): PlaceOrderPayload
5
6# Creates entitlements for the current user on an offers/content
7placeOrders(input: PlaceOrdersInput!): PlaceOrdersPayload
8
9# claimPrimeOffer allows a user to create their entitlement to the given
10# offer/content.
11claimPrimeOffer(input: ClaimPrimeOfferInput!): ClaimPrimeOfferPayload
12
13# markPrimeOffersAsSeen emits an SNS event indicating that a user has seen the
14# given offers/content.
15markPrimeOffersAsSeen(input: MarkPrimeOffersAsSeenInput!): MarkPrimeOffersAsSeenPayload
16
17# Allows the creation of a link between an Amazon account and third-party account
18createAccountLink(input: CreateAccountLinkInput!): CreateAccountLinkPayload
19
20# Link a twitch account to the logged in Amazon user.
21linkTwitchAccount(input: LinkTwitchAccountInput!): LinkTwitchAccountPayload
22
23# Unlink a twitch account from the logged in Amazon user.
24unlinkTwitchAccount(input: UnlinkTwitchAccountInput!): UnlinkTwitchAccountPayload
25
26# signupForPrime allows a user to sign up for Twitch Prime without requiring a
27# twitch account to be linked.
28signupForPrime: SignupForPrimePayload
29
30# claimJourneyOffer allows a user to create their entitlement to a given journey
31# and offer.
32claimJourneyOffer(input: ClaimJourneyOfferInput!): ClaimJourneyOfferPayload
33
34# updateNotificationSettings allows a user to be enabled or disabled for email
35# notification
36updateNotificationSettings(
37input: UpdateNotificationSettingsInput!
38): UpdateNotificationSettingsPayload
39
40# updateTopicSubscription allows a user to be subscribed or unsubscribed
41# notification for a specific topic
42updateTopicSubscription(
43input: UpdateTopicSubscriptionInput!
44): UpdateTopicSubscriptionPayload
45
46# Allows a user to globally unsubscribe from all Prime Gaming email notifications
47# without logging in.
48unsubscribeFromNotificationsWithToken(
49input: UnsubscribeFromNotificationsWithTokenInput!
50): UnsubscribeFromNotificationsWithTokenPayload
51
52# Allows a user to globally subscribe to all Prime Gaming email notifications
53# without logging in.
54subscribeToNotificationsWithToken(
55input: SubscribeToNotificationsWithTokenInput!
56): SubscribeToNotificationsWithTokenPayload
57
58}

link Required by

This element is not required by anyone