diff --git a/404.html b/404.html index b2b1fccae..34bc24675 100644 --- a/404.html +++ b/404.html @@ -3,7 +3,7 @@
- + @@ -27,11 +27,11 @@ - + - + - +This config will try to fetch the same url for 60 times and wait 5 seconds between each call (so max 300 seconds) and will keep going until the status
of the response is done
. If it exceeds the 300 seconds, then the integration will fail.
save_as_file
: (optional) If you expect a file as a response from the server, then you can define this with the filename you want it to have. For example: "save_as_file": "filename.png"
. You can then use this filename in the files
parameter for any requests that you make after this one.
files
: (optional) You can use this to define what you want to send to the api as files. Note that you will have to download the files in the same integration before you are able to use this. This item needs to be defined like this:
{
+ "field_name": "filename.png"
+}
+It will search the previous responses by the key of the files
dictionary. In this case that would be filename.png
, so you would need to have "save_as_file": "filename.png"
in any of the previous requests.