Skip to main content
POST
/
api
/
outreach-sources
Create a new outreach source
curl --request POST \
  --url https://your-instance.example.com/api/outreach-sources \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Facebook Lead Ad"
}
'
{
  "success": true,
  "data": {
    "_id": "665f1a0c0e0a4b001a2c9f30",
    "name": "Facebook Lead Ad",
    "isActive": true,
    "isProtected": false,
    "createdAt": "2026-05-18T12:34:56.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/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.

Body

application/json
name
string
required

New source name. Must not be "Any" and must be unique (case-insensitive) within the organization.

Response

Source created

success
boolean
required
data
object
required
Example:
{
"_id": "665f1a0c0e0a4b001a2c9f30",
"name": "Facebook Lead Ad",
"isActive": true,
"isProtected": false,
"createdAt": "2026-05-01T09:00:00.000Z"
}