v1

latestOpenAPI 3.0.3Apache 2.02026-07-1710047196.1 KB
squeeze

Create a squeeze record

creates a new squeeze record

post/squeeze

Request body

emailstring email
first_namestring
last_namestring
phonestring
locationstring
job_titlestring
companystring
interestsstring[]
referral_sourcestring

Example request

{
  "email": "user@example.com",
  "first_name": "John",
  "last_name": "Doe",
  "phone": "08098761234",
  "location": "Lagos, Nigeria",
  "job_title": "Software Engineer",
  "company": "X-Corp",
  "interests": [
    "Web Development",
    "Cloud Computing"
  ],
  "referral_source": "LinkedIn"
}

Response

Successfully created the resource

statusstring
messagestring

Example response

{
  "status": "success",
  "message": "Your request has been received. You will get a template shortly.",
  "data": {
    "id": "uuid",
    "email": "user@example.com",
    "first_name": "John",
    "last_name": "Doe",
    "phone": "08098761234",
    "location": "Lagos, Nigeria",
    "job_title": "Software Engineer",
    "company": "X-Corp",
    "interests": [
      "Web Development",
      "Cloud Computing"
    ],
    "referral_source": "LinkedIn",
    "created_at": "12-03-2024",
    "updated_at": "12-03-2024"
  }
}