List all pending suggestions for org
GET
/api/v1/suggestions
const url = 'https://dashboard.justcrawl.io/api/v1/suggestions';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/suggestions \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”All pending suggestions for the organization
Media type application/json
Array<object>
object
id
string format: uuid
status
string
currentProviderOrder
Array<string>
suggestedProviderOrder
Array<string>
reason
string
improvementPct
number
improvementMetric
string
estimatedCostBefore
number
estimatedCostAfter
number
createdAt
string format: date-time
resolvedAt
string format: date-time
expiresAt
string format: date-time
Example
[ { "status": "pending" }]