Skip to main content

Spell check

Task: spell_check

Frequency: Hourly

Offset:8 Hours

Statuses

success - "You have fixed all your spelling errors."

error - "You have 2 new spelling errors."

Data

spelling_error_count - The current total amount of spelling errors on the website.

resolved_spelling_errors - An array of the spelling errors that were fixed. (only available on an success status)

new_spelling_errors - An array of the spelling errors that were found on the last check. (only available on an error status)

Example Webhook Payload

{
"uuid": "d5134cd0-e2e9-432c-8b90-411b31397e42",
"business_uuid": "7f38c243-784a-428d-83cd-22891e2fcd46",
"website_uuid": "23267e28-a002-4ecd-ae67-bf198d72bae8",
"competitor_uuid": null,
"category": "website",
"type": "spell_check",
"status": "error",
"data": {
"spelling_error_count": 12,
"new_spelling_errors": ["hotdg", "mstrd"]
}
}

Example Webhook Payload

{
"uuid": "d5134cd0-e2e9-432c-8b90-411b31397e42",
"business_uuid": "7f38c243-784a-428d-83cd-22891e2fcd46",
"website_uuid": "23267e28-a002-4ecd-ae67-bf198d72bae8",
"competitor_uuid": null,
"category": "website",
"type": "spell_check",
"status": "success",
"data": {
"spelling_error_count": 10,
"resolved_spelling_errors": ["hotdg", "mstrd"]
}
}