Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 712 Bytes

auth.md

File metadata and controls

30 lines (23 loc) · 712 Bytes

Authentication Endpoints

The authentication section provides endpoints for user authentication, including login and registration.

Endpoints

  • Login (auth): POST https://prod-api-funimationnow.dadcdigital.com/api/auth/login/

    • Authenticate the user.
  • Register (auth): POST https://prod-api-funimationnow.dadcdigital.com/api/auth/register/

    • Create a new user account.

Request Example For Login

    {
        'username': "[email protected]",
        'password': "password123"
    }

Request Example For Register

    {
        'username': "[email protected]",
        'password': "password123",
        'subscription_id': "337",
        'emailSub': "false"
    }