Get smart workflow config
GET
/api/v1/workflows/{workflowId}/smart
const url = 'https://dashboard.justcrawl.io/api/v1/workflows/example/smart';const options = {method: 'GET', 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 GET \ --url https://dashboard.justcrawl.io/api/v1/workflows/example/smart \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” workflowId
required
string
Responses
Section titled “ Responses ”Smart workflow configuration
Media type application/json
object
strategy
string
mode
string
domain
string
hasPendingSuggestion
boolean
Example
{ "strategy": "success", "mode": "auto"}Not a smart workflow