Main API비즈니스 API
GET /ai/business/contract/mypage
마이페이지 — 전체 계약 이력 조회 (인감·PDF·기업 정보 포함)
계약 이력 조회 (마이페이지)
해당 기업의 모든 계약 이력을 최신순으로 반환합니다. 인감 이미지, 최종 PDF, 계약서 기재 기업 정보를 확인할 수 있습니다.
| 항목 | 값 |
|---|---|
| 메서드 | GET |
| 경로 | /ai/business/contract/mypage |
요청
| 파라미터 | 타입 | 필수 | 설명 |
|---|---|---|---|
memberId | String | 예 | 기업 회원 ID |
GET /ai/business/contract/mypage?memberId=biz_user_001 HTTP/1.1
Host: api.glowb.com응답 (200 OK)
{
"status": 200,
"code": null,
"message": "계약 목록 조회 성공",
"data": [
{
"contractId": 2,
"contractType": "STANDARD",
"status": "SIGNED",
"stampImageUrl": "https://glowb-input.s3.../contract/business/stamp/...",
"finalPdfUrl": "https://glowb-input.s3.../contract/business/pdf/...",
"pdfHash": "a1b2c3d4e5f6...",
"signedAt": "2026-04-27T11:00:00",
"contractBusinessName": "ABC주식회사 (갱신)",
"contractLicense": "123-45-67890",
"contractAddress": "서울시 중구 ...",
"contractRepresentative": "홍길동"
},
{
"contractId": 1,
"contractType": "STANDARD",
"status": "SIGNED",
"stampImageUrl": "https://...",
"finalPdfUrl": "https://...",
"pdfHash": "f6e5d4c3b2a1...",
"signedAt": "2026-03-01T09:00:00",
"contractBusinessName": "ABC주식회사",
"contractLicense": "123-45-67890",
"contractAddress": "서울시 중구 ...",
"contractRepresentative": "홍길동"
}
]
}참고
- 복수의 계약 이력이 있는 경우 최신순 정렬
- SIGNED 외 진행 중인 계약도 포함됩니다