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.

The body is of type object.

Response

200
application/json

User successfully signed up.

The response is of type object.