메인 콘텐츠로 건너뛰기

Documentation Index

Fetch the complete documentation index at: https://docs.llmgenerator.com/llms.txt

Use this file to discover all available pages before exploring further.

PUT /accounts/profile

사용자 프로필 정보를 수정합니다.

요청 본문

firstName
string
새 이름(1~50자)입니다.
lastName
string
새 성(1~50자)입니다.
company
string
새 회사명입니다(최대 100자).

응답

success
boolean
수정 성공 여부입니다.
message
string
상태 메시지입니다.
account
object
수정된 계정 정보입니다.
curl -X PUT https://api.llmgenerator.com/api/v1/accounts/profile \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "Jane",
    "company": "New Company Inc"
  }'
{
  "success": true,
  "message": "Profile updated successfully",
  "account": {
    "id": "user_abc123def456",
    "firstName": "Jane",
    "lastName": "Doe",
    "company": "New Company Inc",
    "updatedAt": "2026-01-27T10:00:00.000Z"
  }
}