Skip to main content

checkLink

Fields

FieldTypeDescriptionDefault
urlstringOptional. URL to check. Can be a full URL or a path. If a path is provided, origin must be specified.
originstringOptional. Protocol and domain to navigate to. Prepended to url.
statusCodesOne of
- integer
- array of integer
Optional. Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.[200,301,302,307,308]

Examples

"https://www.google.com"
"/search"
{
"url": "https://www.google.com",
"statusCodes": 200
}
{
"url": "/search",
"origin": "www.google.com",
"statusCodes": [
200
]
}