OBJECT

TaxInterview

TaxInterview describes the information for a user's Amazon tax interview during payout onboarding.

link GraphQL Schema definition

1type TaxInterview {
2
3# Amazon tax interview account ID.
4accountID: ID! @deprecated( reason: "Use interview options instead" )
5
6# Amazon tax interview client ID.
7clientID: ID! @deprecated( reason: "Use interview options" )
8
9# Legal name of the user completing the Amazon tax interview.
10governmentAlias: String! @deprecated( reason: "Use interview options" )
11
12# The preferred locale for user in the accepted format to initate the Amazon tax
13# interview (e.g. "en_US").
14locale: String! @deprecated( reason: "Use interview options instead" )
15
16# List of key value pairs that were used to generate the signature.
17options: [TaxInterviewOption!]
18
19# Unique signature to initiate the Amazon tax interview.
20signature: String!
21
22# The type of Amazon tax interview.
23type: TaxInterviewType! @deprecated( reason: "Use interview options instead" )
24
25# The URL for user to begin their Amazon tax interview.
26url: String!
27
28}