Update input config
PUT
/api/v1/integrations/inputs/{id}
const url = 'https://dashboard.justcrawl.io/api/v1/integrations/inputs/example';const options = {method: 'PUT', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://dashboard.justcrawl.io/api/v1/integrations/inputs/example \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ”Updated input queue configuration
Media type application/json
object
id
string format: uuid
name
string
queueType
string
queueUrl
string
workflowId
string format: uuid
isEnabled
boolean
pollIntervalMs
integer
maxUrlsPerDay
integer
webhookUrl
string
lastPolledAt
string format: date-time
lastError
string
createdAt
string format: date-time
Example
{ "queueType": "sqs"}