SaaS API인플루언서 SaaS
GET /ai/influence/mypage
마이페이지 데이터 조회
마이페이지 데이터 조회
프로필 이미지, 이름, 전화번호, 이메일, 배송지 목록을 조회합니다.
HTTP 요청
GET /ai/influence/mypage
Authorization: Bearer {access_token}응답
성공 응답 (200 OK)
{
"status": 200,
"code": null,
"message": "성공",
"data": {
"profileImage": "https://...",
"name": "홍길동",
"phone": "010-1234-5678",
"email": "user@example.com",
"deliveryAddresses": [
{
"id": 1,
"addressName": "집",
"recipientName": "홍길동",
"phone": "010-1234-5678",
"address": "서울시 강남구...",
"isDefault": true
}
]
}
}