Authentication Apis
| Method | Endpoint | Auth | Description |
|---|---|---|---|
| POST | /api/v1/auth/register | Public | Register |
| POST | /api/v1/auth/login | Public | Login |
| POST | /api/v1/auth/refresh | Refresh | Refresh token |
| POST | /api/v1/auth/logout | Bearer | Logout |
Example Request
{
"example": "See service documentation for full schemas"
}
Example Response
{
"id": "uuid",
"status": "SUCCESS",
"correlation_id": "uuid"
}
All write endpoints require Idempotency-Key header where applicable.