Engine catalog
Live

Platform

Greit Auth

Live managed authentication used by the Greit product.

Greit 제품에서 사용하는 관리형 인증 기능입니다.

Overview

Contract Scope

Greit Auth is live and integrated into the Greit application for account access, session handling, and callback flows.

Email/password sign-in and supported OAuth sign-in are exposed through Greit-managed authentication flows.

Session and callback handling are implemented under app/api/auth/* and follow the Greit session model.

API Reference

Endpoints

POST

/api/auth/sign-in

Sign in with email and password through Greit Auth.

NameTypeRequiredDescription
emailstringYesUser email address.
passwordstringYesUser password submitted to Greit Auth.

Response

Greit user and session payload.

  • Managed authentication capability for the Greit product.
GET

/api/auth/oauth

Start a supported OAuth sign-in flow through Greit Auth.

NameTypeRequiredDescription
providerstringYesSupported OAuth provider configured for the Greit product.

Response

OAuth redirect flow and Greit session after callback completion.

  • Callback processing is handled under app/api/auth/*.
GET

/api/auth/*

Handle session and callback API routes for the product.

Response

Session, callback, or redirect response depending on the auth route.

  • These routes support Greit session lifecycle in the app.

Quickstart

Five-line curl

curl
curl -X POST "https://thegreit.com/api/auth/sign-in" \
  -H "Content-Type: application/json" \
  -d '{"email":"user@example.com","password":"password"}' \
  -i

Version log

Release Notes

current

2026-07-07
  • Live managed auth documented for email/password, OAuth sign-in, sessions, and callbacks.
  • Session and callback API route family documented as Greit product capability.