Skip to main content
POST
/
api
/
v1
/
sessions
/
{session_id}
/
leads
Add leads to session
curl --request POST \
  --url https://api.example.com/api/v1/sessions/{session_id}/leads \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "leads": [
    {}
  ]
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://bavlio.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

session_id
string
required

Body

application/json

Request model for adding leads to a session.

leads
Leads · object[]
required

List of lead data dictionaries

Response

Successful Response

The response is of type Response Add Leads To Session Api V1 Sessions Session Id Leads Post · object.