Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.leadwaycrm.com/llms.txt

Use this file to discover all available pages before exploring further.

The “Update Redirect By Id” API Allows updating an existing URL redirect in the system. Use this endpoint to modify a URL redirect with the specified ID using details provided in the request payload.
PATCH https://services.leadconnectorhq.com/funnels/lookup/redirect/{id}

Autorizacion

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.

Path parameters

id
string
required

Body

target
string
default:"https://www.google.com"
required
action
string
default:"URL"
required
Posibles valores: ‘funnel’, ‘website’, ‘url’, ‘all’
locationId
string
default:"6p2RxpgtMKQwO3E6IUaT"
required

Respuestas

data
object
required
Data containing details of the updated redirect
{}
{}

Ejemplo

curl -X PATCH 'https://services.leadconnectorhq.com/funnels/lookup/redirect/YOUR_id' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28' \
  -H 'Content-Type: application/json' \
  -d '{
  "target": "https://www.google.com",
  "action": "URL",
  "locationId": "6p2RxpgtMKQwO3E6IUaT"
}'