跳转到主要内容
POST
/
organization
/
{organizationId}
/
users
cURL
curl --request POST \
  --url https://app.teable.ai/api/organization/%7BorganizationId%7D/users \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '[{"departmentId":"string","id":"string","email":"string","name":"string","phone":"string"}]'
[
  {
    "id": "<string>",
    "email": "<string>",
    "name": "<string>",
    "phone": "<string>"
  }
]

授权

Authorization
string
header
必填

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

路径参数

organizationId
string
必填

请求体

application/json
email
string
必填
departmentId
string
id
string
name
string
phone
string

响应

201 - application/json

Create users successfully

id
string
必填
email
string
必填
name
string
必填
phone
string
Last modified on April 7, 2026