POST
/
auth
/
v1
/
signup
curl --request POST \
  --url https://api.aceaicompany.com/auth/v1/signup \
  --header 'Content-Type: application/json' \
  --data '{
  "username": "<string>",
  "password": "<string>",
  "role": "<string>",
  "org": "<string>",
  "github": "<string>",
  "linkedin": "<string>"
}'
{
  "response": "Authenticated!"
}

Purpose: Registers a new user account. This endpoint requires the following fields in the request body: username, password, role, org, github, and linkedin.

Body

application/json
User credentials for sign up.
username
string
required

The new user's username.

password
string
required

The new user's password.

role
string
required

The role for the new user.

org
string
required

The organization for the new user.

github
string
required

The GitHub username for the new user.

linkedin
string
required

The LinkedIn profile for the new user.

Response

200
application/json
User successfully signed up.
response
string
required

A confirmation message for successful sign up.

Example:

"Authenticated!"