Update an external feed
This endpoint will update an external 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
}
}
}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:
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.
To use this node in KNIME, install the extension Brevo from the below update site following our NodePit Product and Node Installation Guide:
A zipped version of the software site can be downloaded here.
Deploy, schedule, execute, and monitor your KNIME workflows locally, in the cloud or on-premises – with our brand new NodePit Runner.
Try NodePit Runner!