Authentication
Connections
Data Masking Rules
AWS
Guard Rails
Server Management
Jira
Organization Management
Plugins
Reports
User Management
Sessions
Session
Authentication
Signup
Signup anonymous authenticated user. This endpoint is only used for multi tenant setups.
POST
/
signup
Copy
Ask AI
curl --request POST \
--url https://use.hoop.dev/api/signup \
--header 'Content-Type: application/json' \
--data '{
"org_name": "<string>",
"profile_name": "<string>",
"profile_picture": "<string>"
}'
Copy
Ask AI
{
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_name": "<string>",
"profile_name": "<string>",
"profile_picture": "<string>"
}
Body
application/json
The request body resource
The body is of type object
.
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://use.hoop.dev/api/signup \
--header 'Content-Type: application/json' \
--data '{
"org_name": "<string>",
"profile_name": "<string>",
"profile_picture": "<string>"
}'
Copy
Ask AI
{
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_name": "<string>",
"profile_name": "<string>",
"profile_picture": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.