Quick Start
API List
- record
- space
- base
- view
- API Reference
- dashboard
- plugin
- attachments
- admin
- trash
- field
- aggregation
- table
- selection
- plan
- user
- auth
- GETGet authuserme
- POSTPost authsignin
- POSTPost authsignout
- POSTPost authsignup
- PATCHPatch authchange password
- POSTPost authsend reset password email
- POSTPost authreset password
- POSTPost authadd password
- GETGet authuser
- POSTPost authsend signup verification code
- PATCHPatch authchange email
- POSTPost authsend change email code
- GETGet authtemp token
- GET
- db-connection
- invitation
- share
- notification
- access-token
- import
- export
- pin
- billing
- usage
- oauth
- comment
- organization
- ai
- integrity
- plugin-panel
- plugin-context-menu
- template
- automation
- authority-matrix
- enterprise
- space-manage
auth
Post authsignup
auth
Post authsignup
Sign up
POST
/
auth
/
signup
curl --request POST \
--url https://app.teable.cn/api/auth/signup \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/json' \
--data '{"email":"user@example.com","password":"stringst","defaultSpaceName":"string","refMeta":{"query":"string","referer":"string"},"verification":{"code":"string","token":"string"}}'
{
"id": "<string>",
"name": "<string>",
"avatar": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"notifyMeta": {
"email": true
},
"hasPassword": true,
"isAdmin": true,
"organization": {
"id": "<string>",
"name": "<string>",
"isAdmin": true
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201 - application/json
Sign up and sing in successfully
The response is of type object
.
curl --request POST \
--url https://app.teable.cn/api/auth/signup \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/json' \
--data '{"email":"user@example.com","password":"stringst","defaultSpaceName":"string","refMeta":{"query":"string","referer":"string"},"verification":{"code":"string","token":"string"}}'
{
"id": "<string>",
"name": "<string>",
"avatar": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"notifyMeta": {
"email": true
},
"hasPassword": true,
"isAdmin": true,
"organization": {
"id": "<string>",
"name": "<string>",
"isAdmin": true
}
}