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

Login

Developing
POST
/api/auth-v1/login

Request

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

Example
{
    "email": "jacksonkasipeacock@gmail.com",
    "password": "test123@PASS"
}

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/login' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "jacksonkasipeacock@gmail.com",
    "password": "test123@PASS"
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-02-09 14:22:29
Previous
Signup
Next
Get Signed Url
Built with