List funnels
GET
/api/sites/{id}/funnels
const url = 'https://hitkeep.com/api/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/funnels';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://hitkeep.com/api/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/funnels \ --cookie hk_token=<hk_token>Lists funnels for a site.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
Responses
Section titled “ Responses ”Funnels
Media type application/json
Array<object>
object
created_at
string format: date-time
id
string format: uuid
name
string
site_id
string format: uuid
steps
Array<object>
object
type
string
value
string
Example
[ { "steps": [ { "type": "event" } ] }]