POST
/
leads
/
{leadId}
/
addContext
curl --request POST \
  --url https://api.attent.app/v1/leads/{leadId}/addContext \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "context": "The lead has scheduled a meeting with me on Monday at 2pm.",
  "additionalInfo": {
    "favoriteColor": "blue",
    "favoriteFood": "pizza"
  },
  "command": "Schedule a follow up for next week."
}'
{
  "message": "Success"
}

Authorizations

x-api-key
string
header
required

Path Parameters

leadId
string
required

The ID of the lead to add context to.

Body

application/json
The lead's context and an optional command.
context
string

Additional context to add to the lead. Good for adding free-form text context or event details.

additionalInfo
object

An key-value object containing structured data to store with the lead. These will be stored as variables that can be accessed in the flow-chart conversation prompts.

command
string

An optional command for Apten regarding the lead. Currently allowed commands are scheduling a follow up and sending a message.

Response

200
application/json
Context has successfully been added to the lead.
message
string

Returns "Success" if the context was added successfully.