Reward-Based Recycling Tracker
  1. Auth
Reward-Based Recycling Tracker
  • User
    • Get Profile
      GET
  • Auth
    • Signup
      POST
    • Login
      POST
  • Async Task
    • Storage
      • Get Signed Url
    • BG Task & Python server
      • Py - Get Image Hash
      • Submission Process
  • App
    • Submission Process Copy
      POST
  • Email API
    • Success Email
      POST
    • Failure Email
      POST
  1. Auth

Signup

Developing
POST
/api/auth-v1/signup

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "name": "Jackson kasi",
    "email": "jacksonkasipeacock1@gmail.com",
    "password": "test123@PASS",
    "visitor_id": "9qcnZChP8902aywKBsmP"
}

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 --request POST '/api/auth-v1/signup' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Jackson kasi",
    "email": "jacksonkasipeacock1@gmail.com",
    "password": "test123@PASS",
    "visitor_id": "9qcnZChP8902aywKBsmP"
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-02-09 14:10:20
Previous
Get Profile
Next
Login
Built with