Skip to main content
POST
/
api
/
v2
/
chatbots
/
{chatbotId}
/
transfer
Transfer Chatbot
curl --request POST \
  --url https://sitegpt.ai/api/v2/chatbots/{chatbotId}/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "userId": "<string>"
}
'
{
  "ok": true,
  "data": {
    "chatbot": {
      "id": "chatbot-id",
      "name": "Example chatbot",
      "createdAt": "2026-05-13T00:00:00.000Z"
    }
  },
  "meta": {
    "requestId": "request-id"
  }
}

Documentation Index

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

chatbotId
string
required

Body

application/json
email
string<email>
required

Email of the user to transfer ownership to. If no user with this email exists in the brand yet, an account is provisioned for them.

userId
string

User id of the recipient. Use instead of email, or to disambiguate. Must be a user in the same brand.

keepSourceAs
enum<string>

If set, keep the previous owner as a member at this role (ownership reassignment within a team). If omitted, the previous owner is removed from the chatbot (full transfer).

Available options:
AGENT,
MANAGER,
ADMIN,
SUPER_ADMIN

Response

Successful SiteGPT API v2 response.

ok
boolean
required
data
object
required
meta
object
required