INPUT_OBJECT
CreateBountyCampaignInput
CreateBountyCampaignInput includes the campaign that is being created.
link GraphQL Schema definition
1 input CreateBountyCampaignInput { 4 2 # The platforms that the campaign applies to. 3 : [String!] 7 5 # The list of broadcaster IDs to blacklist (if any) for the campaign. 6 : [ID!] 10 8 # Optional box art URL for the campaign. 9 : String 13 11 # The message that will be shown to the broadcaster when they view the campaign. 12 : String 16 14 # The multiplier for the broadcaster payout rate. 15 : Float! 19 17 # The budget for the campaign in cents. 18 : Int! 22 20 # The chat Calls to Action for the campaign. 21 : [BountyCampaignChatCTAInput!] 25 23 # The ID of the content that the campaign is related to. 24 : ID 28 26 # Optional cover URL for the campaign. 27 : String 31 29 # Optional display for the campaign. 30 : String 34 32 # When the campaign will end. 33 : Time! 37 35 # If the campaing is a promotional campaign. 36 : Boolean 40 38 # The ID of the organization that the campaign is related to. 39 : ID! 43 41 # If the campaign should allow any game to be played. 42 : Boolean 46 44 # The optional name of the sponsor of the campaign. 45 : String 49 47 # When the campaign will start. 48 : Time! 53 50 # Deprecated. How long the broadcaster needs to stream the sponsored content to 51 # complete the bounty (in minutes). 52 : Int 57 54 # How long the broadcaster needs to stream the sponsored content to complete the 55 # bounty (in seconds). 56 : Int 60 58 # Flag to target all broadcaters for the campaign. 59 : Boolean 63 61 # Flag to target all countries for the campaign. 62 : Boolean 66 64 # Flag to target all games for the campaign. 65 : Boolean 69 67 # The click target of the campaign if it is a promotional campaign. 68 : Int 72 70 # Flag to target variety broadcaters for the campaign. 71 : Boolean 75 73 # Targeted countries for the campaign (represented by ISO 3166-1 alpha-2). 74 : [String!] 78 76 # Targeted Games (game titles) for the campaign. 77 : [String!] 81 79 # The title of the campaign. 80 : String! 84 82 # The tracking URLs for this campaign. 83 : [TrackingPixelInput!] 87 85 # The type of the campaign. 86 : BountyCampaignType 90 88 # Deprecated, use videos instead. The URL of the video for this campaign. 89 : String 93 91 # The video URLS for the campaign. 92 : [BountyCampaignVideoInput!] 94 }