Funnels
Funnels API
Documentación de la API de funnels
Servidor base: https://services.leadconnectorhq.com
Endpoints
- POST /funnels/lookup/redirect — Crear Redirect
- PATCH /funnels/lookup/redirect/{id} — Actualizar Redirect By Id
- DELETE /funnels/lookup/redirect/{id} — Eliminar Redirect By Id
- GET /funnels/lookup/redirect/list — Fetch List of Redirects
- GET /funnels/funnel/list — Fetch List of Funnels
- GET /funnels/page — Fetch list of funnel pages
- GET /funnels/page/count — Fetch count of funnel pages
POST /funnels/lookup/redirect
Crear Redirect The "Create Redirect" API Allows adding a new url redirect to the system. Use this endpoint to create a url redirect with the specified details. Ensure that the required information is provided in the request payload.
Scopes requeridos: funnels/redirect.write
Parametros:
- Versión (header, string) (requerido) — Versión de la API
Cuerpo de la peticion (application/json):
- locationId (requerido) — string
- domain (requerido) — string
- path (requerido) — string
- target (requerido) — string
- action (requerido) — string
Respuestas:
- 200 — Respuesta exitosa
- 422 — Entidad no procesable
PATCH /funnels/lookup/redirect/{id}
Actualizar Redirect By Id 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.
Scopes requeridos: funnels/redirect.write
Parametros:
- Versión (header, string) (requerido) — Versión de la API
- id (path, string) (requerido) —
Cuerpo de la peticion (application/json):
- target (requerido) — string
- action (requerido) — string
- locationId (requerido) — string
Respuestas:
- 200 — Respuesta exitosa
- 422 — Entidad no procesable
DELETE /funnels/lookup/redirect/{id}
Eliminar Redirect By Id The "Delete Redirect By Id" API Allows deletion of a URL redirect from the system using its unique identifier. Use this endpoint to delete a URL redirect with the specified Id using details provided in the request payload.
Scopes requeridos: funnels/redirect.write
Parametros:
- Versión (header, string) (requerido) — Versión de la API
- id (path, string) (requerido) —
- locationId (query, string) (requerido) —
Respuestas:
- 200 — Successful response - URL redirect deleted successfully
- 422 — Unprocessable Entity - The provided data is invalid or incomplete
GET /funnels/lookup/redirect/list
Fetch List of Redirects Retrieves a list of all URL redirects based on the given query parameters.
Scopes requeridos: funnels/redirect.readonly
Parametros:
- Versión (header, string) (requerido) — Versión de la API
- locationId (query, string) (requerido) —
- limit (query, number) (requerido) —
- offset (query, number) (requerido) —
- search (query, string) —
Respuestas:
- 200 — Successful response - List of URL redirects returned
- 422 — Unprocessable Entity - The provided data is invalid or incomplete
GET /funnels/funnel/list
Fetch List of Funnels Retrieves a list of all funnels based on the given query parameters.
Parametros:
- locationId (query, string) (requerido) —
- type (query, string) —
- category (query, string) —
- offset (query, string) —
- limit (query, string) —
- parentId (query, string) —
- name (query, string) —
Respuestas:
- 200 — Successful response - List of funnels returned
GET /funnels/page
Fetch list of funnel pages Retrieves a list of all funnel pages based on the given query parameters.
Parametros:
- locationId (query, string) (requerido) —
- funnelId (query, string) (requerido) —
- name (query, string) —
- limit (query, number) (requerido) —
- offset (query, number) (requerido) —
Respuestas:
- 200 — Successful response - List of funnel pages returned
GET /funnels/page/count
Fetch count of funnel pages Retrieves count of all funnel pages based on the given query parameters.
Parametros:
- locationId (query, string) (requerido) —
- funnelId (query, string) (requerido) —
- name (query, string) —
Respuestas:
- 200 — Successful response - Count of funnel pages returned
