Skip to main content
POST
/
api
/
v1
/
senders
Python
from everos import EverOS

client = EverOS()
senders = client.v1.senders

response = senders.create(
    sender_id="<string>",
    name="<string>"
)
print(response)
{
  "data": {
    "sender_id": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
default:Bearer <api_key>
required

Bearer authentication header of the form Bearer 'api_key', obtain your API key from everos.evermind.ai.

Body

application/json
sender_id
string
required

Sender identifier (unique)

Example:

"user_123"

name
string | null

Sender display name

Example:

"Alice"

Response

Sender created/updated successfully

data
object