Download OpenAPI specification:
SPAJAM 2025のAPI仕様書
新規ユーザを作成
| email required | string <email> ユーザのメールアドレス |
| password required | string パスワード |
{- "email": "user@example.com",
- "password": "password123"
}{- "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
- "token_type": "bearer",
- "expires_in": 3600,
- "expires_at": 1758013496,
- "refresh_token": "42c5rljcaysp",
- "user": {
- "id": "019eb980-7b07-4096-a2a4-eedfaa82993f",
- "aud": "authenticated",
- "role": "authenticated",
- "email": "testaaa@example.com",
- "email_confirmed_at": "2025-09-16T08:04:56.058716255Z",
- "phone": "",
- "last_sign_in_at": "2025-09-16T08:04:56.062900736Z",
- "app_metadata": {
- "provider": "email",
- "providers": [
- "email"
]
}, - "user_metadata": {
- "email": "test@example.com",
- "email_verified": true,
- "phone_verified": false,
- "sub": "019eb980-7b07-4096-a2a4-eedfaa82993f"
}, - "identities": [
- {
- "identity_id": "3fc64997-3621-4db0-941c-81ff113cb0b3",
- "id": "019eb980-7b07-4096-a2a4-eedfaa82993f",
- "user_id": "019eb980-7b07-4096-a2a4-eedfaa82993f",
- "provider": "email",
- "last_sign_in_at": "2025-09-16T08:04:56.054454023Z",
- "created_at": "2025-09-16T08:04:56.054484Z",
- "updated_at": "2025-09-16T08:04:56.054484Z",
- "email": "testaaa@example.com"
}
], - "created_at": "2025-09-16T08:04:56.032741Z",
- "updated_at": "2025-09-16T08:04:56.066188Z",
- "is_anonymous": false
}
}既存ユーザでサインイン
| grant_type required | string Value: "password" Example: grant_type=password 認証タイプ |
| email required | string <email> ユーザのメールアドレス |
| password required | string パスワード |
{- "email": "test@example.com",
- "password": "password123"
}{- "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
- "token_type": "bearer",
- "expires_in": 3600,
- "expires_at": 1758013872,
- "refresh_token": "aoxiuchy5ld4",
- "user": {
- "id": "8cd59145-725b-4eae-9537-b7c29851aa66",
- "aud": "authenticated",
- "role": "authenticated",
- "email": "test@example.com",
- "email_confirmed_at": "2025-09-10T18:51:23.715763Z",
- "phone": "",
- "confirmed_at": "2025-09-10T18:51:23.715763Z",
- "last_sign_in_at": "2025-09-16T08:11:12.48347775Z",
- "app_metadata": {
- "provider": "email",
- "providers": [
- "email"
]
}, - "user_metadata": {
- "email": "test@example.com",
- "email_verified": true,
- "phone_verified": false,
- "sub": "8cd59145-725b-4eae-9537-b7c29851aa66"
}, - "identities": [
- {
- "identity_id": "c7a64d62-07b6-4074-8ffa-356de16905b4",
- "id": "8cd59145-725b-4eae-9537-b7c29851aa66",
- "user_id": "8cd59145-725b-4eae-9537-b7c29851aa66",
- "provider": "email",
- "last_sign_in_at": "2025-09-10T18:51:23.713492Z",
- "created_at": "2025-09-10T18:51:23.713515Z",
- "updated_at": "2025-09-10T18:51:23.713515Z",
- "email": "test@example.com"
}
], - "created_at": "2025-09-10T18:51:23.703962Z",
- "updated_at": "2025-09-16T08:11:12.486027Z",
- "is_anonymous": false
}, - "weak_password": null
}