Keen
  • Welcome to Keen's API Docs
  • Getting Started
    • Authentication
    • Requests
Powered by GitBook
On this page
  1. Getting Started

Requests

PreviousAuthentication

Last updated 2 months ago

  • GET/leads
  • POST/lead
  • POST/update_status_id
get
Authorizations
Query parameters
channel_idstring · uuidRequired
Header parameters
X-API-KEYstringRequired
Responses
200
Success!
application/json
400
Input Error. Check the request payload for issues.
401
Unauthorized
403
Access denied. Additional privileges are needed access the requested resource.
404
Not Found. The requested resource does not exist.
429
Rate Limited. Too many requests.
500
Unexpected error
get
GET /api:-rEW9niB/leads HTTP/1.1
Host: xjjl-fsea-0smf.f2.xano.io
X-API-KEY: text
Accept: */*
{
  "lead": "text"
}
post

Authentication: not required

Header parameters
X-API-KEYstringRequired
Body
emailstringOptional
first_namestringOptional
last_namestringOptional
phonestringOptional
company_namestringOptional
sourcestringOptional
employeestringOptional
channel_idstring · uuidOptional
Responses
200
Success!
application/json
Responseobject
400
Input Error. Check the request payload for issues.
401
Unauthorized
403
Access denied. Additional privileges are needed access the requested resource.
404
Not Found. The requested resource does not exist.
429
Rate Limited. Too many requests.
500
Unexpected error
post
POST /api:-rEW9niB/lead HTTP/1.1
Host: xjjl-fsea-0smf.f2.xano.io
X-API-KEY: text
Content-Type: application/json
Accept: */*
Content-Length: 237

{
  "email": "text",
  "first_name": "text",
  "last_name": "text",
  "phone": "text",
  "company_name": "text",
  "source": "text",
  "employee": "text",
  "channel_id": "123e4567-e89b-12d3-a456-426614174000",
  "properties": [
    {
      "value": "text",
      "property_definition_id": 1
    }
  ]
}
{}
post

Authentication: not required

Body
lead_idinteger · int64Required
status_idinteger · int64Optional
Responses
200
Success!
application/json
Responseobject
400
Input Error. Check the request payload for issues.
401
Unauthorized
403
Access denied. Additional privileges are needed access the requested resource.
404
Not Found. The requested resource does not exist.
429
Rate Limited. Too many requests.
500
Unexpected error
post
POST /api:-rEW9niB/update_status_id HTTP/1.1
Host: xjjl-fsea-0smf.f2.xano.io
Content-Type: application/json
Accept: */*
Content-Length: 27

{
  "lead_id": 1,
  "status_id": 1
}
{}