-
Notifications
You must be signed in to change notification settings - Fork 1
API 설계
Znero edited this page Nov 9, 2024
·
6 revisions
| Name | HTTP | URI |
|---|---|---|
| 쉘 전체 가져오기 | GET |
/api/shells |
| 쉘 삭제 | DELETE |
/api/shells/:shell-id |
| 쉘 쿼리 수정 | PUT |
/api/shells/:shell-id |
| 쉘 추가 | POST |
/api/shells |
| 쉘 테이블 저장 | POST |
/api/shells/:shell-id/table |
| Name | HTTP | URI |
|---|---|---|
| 쿼리 실행 | POST |
/api/shells/execute |
| Name | HTTP | URI |
|---|---|---|
| ERD 가져오기 | GET |
/api/erd |
- 정상
{
"status": true,
"data": {
"id": 123,
"name": "John Doe",
"email": "[email protected]"
},
"message": "Request processed successfully"
}- 에러
{
"status": false,
"error": {
"code": 404,
"message": "Resource not found"
}
}