INPUT_OBJECT
UpdateApiCallNotificationInputType
# GraphQL Schema definition
1 input UpdateApiCallNotificationInputType { 5 2 # liquid code which can be used to process the response from the endpoint. You 3 # have access to "response" variable. 4 String : 9 6 # liquid code to evaluate to whatever you want to send as a request body, for 7 # example a JSON. 8 String : 15 10 # liquid code which should evaluate to integer. Delays invoking the job by 11 # specified number of minutes. Useful to invoke code at certain point in time, for 12 # example 1 hour before something etc. To calculate proper number you can use 13 # time_diff filter. 14 String : 18 16 # ids of form configurations which should trigger the api call 17 ID] : [ 21 19 # Deprecated, use request_headers 20 HashObject : 23 22 HashObject : 27 24 # name of the api call, which is used in form_configurations or mutation to 25 # trigger it 26 String : 32 28 # defines where the file definition will be available after pull; should start 29 # with the module name follow by private/public scope, for example 30 # manual/public/notifications/api_call_notifications/my_api_call_notification 31 String : 34 33 HashObject : 39 35 # Liquid code which should evaluate to valid request type: Get, Post, Put, Patch, 36 # Delete, Head or if you want to send binary files: Post_Multipart, Put_Multipart, 37 # Patch_Multipart 38 String : 42 40 # liquid code to evaluate to valid endpoint for the request. 41 String : 45 43 # liquid code which should evaluate to true if the api call should be sent 44 String : 46 }