OBJECT
TaxInterview
TaxInterview describes the information for a user's Amazon tax interview during payout onboarding.
link GraphQL Schema definition
1 type TaxInterview { 2 3 # Amazon tax interview account ID. 4 : ID! @deprecated( reason: "Use interview options instead" ) 5 6 # Amazon tax interview client ID. 7 : ID! @deprecated( reason: "Use interview options" ) 8 9 # Legal name of the user completing the Amazon tax interview. 10 : 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"). 14 : String! @deprecated( reason: "Use interview options instead" ) 15 16 # List of key value pairs that were used to generate the signature. 17 : [TaxInterviewOption!] 18 19 # Unique signature to initiate the Amazon tax interview. 20 : String! 21 22 # The type of Amazon tax interview. 23 : TaxInterviewType! @deprecated( reason: "Use interview options instead" ) 24 25 # The URL for user to begin their Amazon tax interview. 26 : String! 27 28 }