Skip to main content
POST
/
external
/
v1
/
leads
Create Lead
curl --request POST \
  --url https://us.api.aiosmedical.com/external/v1/leads \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "data": {
    "name": "John Doe",
    "email": "[email protected]",
    "phone": "1234567890",
    "address": "123 Main St, Anytown, USA"
  }
}
'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "email": "[email protected]",
  "data": {
    "name": "John Doe",
    "email": "[email protected]",
    "phone": "1234567890",
    "address": "123 Main St, Anytown, USA"
  },
  "createdAt": "2025-06-04T12:00:00.000Z"
}

Body

application/json
email
string<email>
data
object
Example:
{
"name": "John Doe",
"email": "[email protected]",
"phone": "1234567890",
"address": "123 Main St, Anytown, USA"
}

Response

Lead created successfully

id
string
Example:

"123e4567-e89b-12d3-a456-426614174000"

email
string
data
object
Example:
{
"name": "John Doe",
"email": "[email protected]",
"phone": "1234567890",
"address": "123 Main St, Anytown, USA"
}
createdAt
string
Example:

"2025-06-04T12:00:00.000Z"