Skip to main content
POST
/
signup
/
complete
Complete email sign-up
curl --request POST \
  --url https://slog.ai/signup/complete \
  --header 'Content-Type: application/json' \
  --data '
{
  "signup_token": "tok_01jqsignup1234abcd",
  "code": "482910",
  "name": "Alex Johnson",
  "workspace_name": "Acme Engineering"
}
'
{
  "data": {
    "api_token": "slog_key_01jqapikey1234abcd",
    "workspace_slug": "acme-engineering",
    "workspace_name": "Acme Engineering"
  }
}

Body

application/json
signup_token
string
required

Token returned by POST /signup/start.

Example:

"tok_01jqsignup1234abcd"

code
string
required

6-digit OTP sent to the email address.

Required string length: 6
Example:

"482910"

name
string
required

Display name for the new user.

Minimum string length: 1
Example:

"Alex Johnson"

workspace_name
string
required

Name for the new workspace.

Minimum string length: 1
Example:

"Acme Engineering"

Response

Account created. Use api_token to authenticate subsequent requests.

data
object