Funel API Dashboard
POSTAuthorisation Api
https://api.funel.io/api/login
Funel uses Tokenization is the process to authenticate your account.. A token representing this information is returned to your server to use. This processes ensures that data is secure, and allows your integration to operate in a PCI-compliant way.
Tokenizate to authenticate login requests. You can view and manage your data once login is successful. The API keys will be provided to your developer and we will help your team with integration.
Test mode secret keys have the prefix sk_funel_ and live mode secret keys have the prefix sk_live_funel.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
Provide your API key as the basic auth username value. You do not need to provide a password.
curl --location --request POST 'https://api.funel.io/api/login'
GETGet Dash Data Api
https://api.funel.io/api/get-dash-data?client_id=122
Funel makes integrating your dashboard with other applications a breeze! With just one click, you can seamlessly connect with popular platforms like Hubspot and Salesforce, or even your own CRM.
curl --location 'https://api.funel.io/api/get-dash-data?client_id=122' \
--header 'Authorization: Bearer 1|PvFJptLtYgwv5w5vMyGf7TSjdtQjoHK1qTIB9o05'
GETGet Leads Data Api
https://api.funel.io/api/get-leads-data?client_id=122
API call to get appointment setting data and connect with your calendly or Zoom. Our APIs are available in all programming languages, making it easy for your development team to get started. And if you need any assistance, our dedicated support team is here to help your developers every step of the way.
curl --location 'https://api.funel.io/api/get-leads-data?client_id=122' \
--header 'Authorization: Bearer 1|PvFJptLtYgwv5w5vMyGf7TSjdtQjoHK1qTIB9o05'
GETGet Report Data Api
https://api.funel.io/api/get-report-data?client_id=122
curl --location 'https://api.funel.io/api/get-report-data?client_id=122' \
--header 'Authorization: Bearer 1|PvFJptLtYgwv5w5vMyGf7TSjdtQjoHK1qTIB9o05'
GETGet Notification Data Api
https://api.funel.io/api/get-notification-data?client_id=122
API call to get notification on other CRM's
curl --location 'https://api.funel.io/api/get-notification-data?client_id=122' \
--header 'Authorization: Bearer 1|PvFJptLtYgwv5w5vMyGf7TSjdtQjoHK1qTIB9o05'
GETGet Invoice Data Api
https://api.funel.io/api/get-invoice-data?client_id=122
curl --location 'https://api.funel.io/api/get-invoice-data?client_id=122' \
--header 'Authorization: Bearer 1|PvFJptLtYgwv5w5vMyGf7TSjdtQjoHK1qTIB9o05'
GETGet Message Data Api
https://api.funel.io/api/get-message-data?client_id=122
API call to integrate our Chat system
curl --location 'https://api.funel.io/api/get-message-data?client_id=122' \
--header 'Authorization: Bearer 1|PvFJptLtYgwv5w5vMyGf7TSjdtQjoHK1qTIB9o05'
GETGet Invoice Item Data Api
https://api.funel.io/api/get-invoice-item-data?invoice_id=98
curl --location 'https://api.funel.io/api/get-invoice-item-data?invoice_id=98' \
--header 'Authorization: Bearer 1|PvFJptLtYgwv5w5vMyGf7TSjdtQjoHK1qTIB9o05'
POSTLogout API
https://api.funel.io/api/logout
API call to logout from Funel Dashboard
curl --location 'https://api.funel.io/api/logout' \
--header 'Authorization: Bearer 4|DO0Rylrzxl5jdcyzVNbTiChkMsBAZsf3A0jKYE2E' \
--form 'client_id="1"'