1. Auth
Pitside For FRC
  • Auth
    • Register
      POST
    • Login
      POST
  • Users
    • User Self Managment
      • Get User Data
      • Update User
      • Delete User
      • See User's Teams
      • Get Team Members
    • Team Invites
      • Create Invite
      • Get Invites
      • Update Invite
      • Disable Invite
      • Get Team from Invite
      • Reedem Invite
    • Permissons
      • Roles
        • Create Role
        • Get Role
        • Get Roles - Bulk
        • Update Role
        • Delete Role
        • Assign Permission to Role
        • Unassign Permission to Role
        • Assign Role to Users
        • Unassign Role to Users
      • Assign Permission
      • Unassign Permission
      • Get All Permissions
      • Get User's Permissions
    • Remove User From Team
      POST
  1. Auth

Register

POST
https://api.pitside.app/auth/register
Creates a new user with details provided and returns a jwt token. This is not the recommended method. The recomended method is to implement the supabase auth client into your application or by using the supabase auth api.

Request

Body Params application/jsonRequired

Example
{
    "username": "string",
    "useremail": "string",
    "password": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.pitside.app/auth/register' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "username": "string",
    "useremail": "string",
    "password": "string"
}'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "token": "string"
}
🔴500Internal Server Error
Next
Login
Built with