Skip to main content
PATCH
/
funnels
/
lookup
/
redirect
/
{id}
Update Redirect By Id
curl --request PATCH \
  --url https://services.leadconnectorhq.com/funnels/lookup/redirect/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "target": "https://www.google.com",
  "action": "URL",
  "locationId": "6p2RxpgtMKQwO3E6IUaT"
}
'
{
  "data": {
    "id": "6p2RxpgtMKQwO3E6IUaT",
    "locationId": "6p2RxpgtMKQwO3E6IUaT",
    "domain": "www.example.com",
    "path": "/old-path",
    "pathLowercase": "/old-path",
    "type": "Permanent",
    "target": "https://www.example.com/new-path",
    "action": "url"
  }
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Path Parameters

id
string
required

Body

application/json
target
string
required
Example:

"https://www.google.com"

action
enum<string>
required
Available options:
funnel,
website,
webinar,
url,
all
Example:

"URL"

locationId
string
required
Example:

"6p2RxpgtMKQwO3E6IUaT"

Response

Successful response

data
object
required
Last modified on March 4, 2026