Update External Feed

Update an external feed

This endpoint will update an external feed.

Options

Uuid
UUID of the feed to update
Body
Values to update a feed

Request body which must comply to the following JSON Schema:

{
  "type" : "object",
  "properties" : {
    "name" : {
      "type" : "string",
      "description" : "Name of the feed",
      "example" : "New feed"
    },
    "url" : {
      "type" : "string",
      "description" : "URL of the feed",
      "format" : "url",
      "example" : "http://requestb.in/173lyyx1"
    },
    "authType" : {
      "type" : "string",
      "description" : "Auth type of the feed:\n * `basic`\n * `token`\n * `noAuth`\n",
      "enum" : [ "basic", "token", "noAuth" ]
    },
    "username" : {
      "type" : "string",
      "description" : "Username for authType `basic`",
      "example" : "user"
    },
    "password" : {
      "type" : "string",
      "description" : "Password for authType `basic`",
      "example" : "password"
    },
    "token" : {
      "type" : "string",
      "description" : "Token for authType `token`",
      "example" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
    },
    "headers" : {
      "type" : "array",
      "description" : "Custom headers for the feed",
      "example" : [ {
        "name" : "header1",
        "value" : "value1"
      }, {
        "name" : "header2",
        "value" : "value2"
      } ],
      "items" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "string",
            "description" : "Name of the header",
            "example" : "userId"
          },
          "value" : {
            "type" : "string",
            "description" : "Value of the header",
            "example" : "user12345"
          }
        }
      }
    },
    "maxRetries" : {
      "maximum" : 5,
      "minimum" : 0,
      "type" : "integer",
      "description" : "Maximum number of retries on the feed url",
      "example" : 5,
      "default" : 5
    },
    "cache" : {
      "type" : "boolean",
      "description" : "Toggle caching of feed url response",
      "example" : true,
      "default" : false
    }
  }
}
Result Format

Specify how the response should be mapped to the table output. The following formats are available:

Raw Response: Returns the raw response in a single row with the following columns:

  • status: HTTP status code

Input Ports

Icon
Configuration data.

Output Ports

Icon
Result of the request depending on the selected Result Format.
Icon
Configuration data (this is the same as the input port; it is provided as passthrough for sequentially chaining nodes to declutter your workflow connections).

Popular Predecessors

  • No recommendations found

Popular Successors

  • No recommendations found

Views

This node has no views

Workflows

  • No workflows found

Links

Developers

You want to see the source code for this node? Click the following button and we’ll use our super-powers to find it for you.