mandamong
  1. mandalart
mandamong
  • before-auth
    • user
      • 닉네임 중복 검증
      • 이메일 중복 검증
      • 이메일 인증 요청
      • 이메일 검증
      • 기본 회원가입
    • auth
      • 로그인
      • AT 갱신 (RTR)
  • after-auth
    • mandalart
      • 주제 입력으로 목표, 행동 생성
        POST
      • 목표 입력으로 행동 생성
        POST
      • 만다르트 표 저장
        POST
      • 만다르트 이름 수정
        PATCH
      • 만다르트 주제 수정
        PATCH
      • 만다라트 목표 수정
        PATCH
      • 만다라트 행동 수정
        PATCH
      • 만다르트 행동 상태 수정
        PATCH
      • 만다르트 표 다건 조회
        GET
      • 만다르트 표 단건 조회
        GET
      • 만다르트 표 삭제
        DELETE
    • user
      • 닉네임 변경
      • 비밀번호 검증
      • 비밀번호 변경
      • 비밀번호 초기화
      • 탈퇴
    • auth
      • 로그아웃
  1. mandalart

만다르트 표 다건 조회

GET
https://mandamong-dev.sailin.cloud/api/mandalart
Last modified:2025-07-31 11:00:13
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://mandamong-dev.sailin.cloud/api/mandalart'
Response Response Example
{
    "success": true,
    "payload": {
        "totalPage": 1,
        "hasNext": false,
        "content": [
            {
                "mandalart": {
                    "id": 1,
                    "name": "멋진 개발자 계획표",
                    "status": "IN_PROGRESS"
                },
                "subject": {
                    "id": 1,
                    "name": "1등 개발자 되기",
                    "status": "IN_PROGRESS"
                },
                "objectives": [
                    {
                        "id": 1,
                        "name": "코딩 실력 향상",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 2,
                        "name": "새로운 기술 습득",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 3,
                        "name": "협업 능력 강화",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 4,
                        "name": "문제 해결 능력 증진",
                        "status": "IN_PROGRESS"
                    }
                ],
                "actions": [
                    [
                        {
                            "id": 1,
                            "name": "알고리즘 문제 풀이 꾸준히 하기",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 2,
                            "name": "클린 코드 원칙 학습 및 적용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 3,
                            "name": "테스트 코드 작성 습관화",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 4,
                            "name": "코드 리뷰 적극적으로 참여",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 5,
                            "name": "다양한 프로젝트 경험 쌓기",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 6,
                            "name": "새로운 프로그래밍 언어 학습 시작",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 7,
                            "name": "관심 있는 프레임워크 또는 라이브러리 깊이 있게 파고들기",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 8,
                            "name": "온라인 강의 및 튜토리얼 활용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 9,
                            "name": "기술 블로그 및 컨퍼런스 영상 시청",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 10,
                            "name": "오픈 소스 프로젝트 참여",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 11,
                            "name": "팀 프로젝트 시 적극적으로 소통",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 12,
                            "name": "다른 개발자의 코드 이해 및 피드백 제공",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 13,
                            "name": "코드 공유 및 협업 도구 능숙하게 사용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 14,
                            "name": "건설적인 비판 수용 및 개선",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 15,
                            "name": "팀 목표 달성을 위한 헌신",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 16,
                            "name": "복잡한 문제 발생 시 근본 원인 분석",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 17,
                            "name": "다양한 해결 방안 탐색 및 비교",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 18,
                            "name": "디버깅 능력 향상에 집중",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 19,
                            "name": "성공 및 실패 사례 분석을 통한 학습",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 20,
                            "name": "동료 개발자와 함께 문제 해결",
                            "status": "IN_PROGRESS"
                        }
                    ]
                ]
            },
            {
                "mandalart": {
                    "id": 2,
                    "name": "멋진 개발자 계획표",
                    "status": "IN_PROGRESS"
                },
                "subject": {
                    "id": 2,
                    "name": "1등 개발자 되기",
                    "status": "IN_PROGRESS"
                },
                "objectives": [
                    {
                        "id": 5,
                        "name": "코딩 실력 향상",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 6,
                        "name": "새로운 기술 습득",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 7,
                        "name": "협업 능력 강화",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 8,
                        "name": "문제 해결 능력 증진",
                        "status": "IN_PROGRESS"
                    }
                ],
                "actions": [
                    [
                        {
                            "id": 21,
                            "name": "알고리즘 문제 풀이 꾸준히 하기",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 22,
                            "name": "클린 코드 원칙 학습 및 적용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 23,
                            "name": "테스트 코드 작성 습관화",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 24,
                            "name": "코드 리뷰 적극적으로 참여",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 25,
                            "name": "다양한 프로젝트 경험 쌓기",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 26,
                            "name": "새로운 프로그래밍 언어 학습 시작",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 27,
                            "name": "관심 있는 프레임워크 또는 라이브러리 깊이 있게 파고들기",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 28,
                            "name": "온라인 강의 및 튜토리얼 활용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 29,
                            "name": "기술 블로그 및 컨퍼런스 영상 시청",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 30,
                            "name": "오픈 소스 프로젝트 참여",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 31,
                            "name": "팀 프로젝트 시 적극적으로 소통",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 32,
                            "name": "다른 개발자의 코드 이해 및 피드백 제공",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 33,
                            "name": "코드 공유 및 협업 도구 능숙하게 사용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 34,
                            "name": "건설적인 비판 수용 및 개선",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 35,
                            "name": "팀 목표 달성을 위한 헌신",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 36,
                            "name": "복잡한 문제 발생 시 근본 원인 분석",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 37,
                            "name": "다양한 해결 방안 탐색 및 비교",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 38,
                            "name": "디버깅 능력 향상에 집중",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 39,
                            "name": "성공 및 실패 사례 분석을 통한 학습",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 40,
                            "name": "동료 개발자와 함께 문제 해결",
                            "status": "IN_PROGRESS"
                        }
                    ]
                ]
            },
            {
                "mandalart": {
                    "id": 3,
                    "name": "멋진 개발자 계획표",
                    "status": "IN_PROGRESS"
                },
                "subject": {
                    "id": 3,
                    "name": "1등 개발자 되기",
                    "status": "IN_PROGRESS"
                },
                "objectives": [
                    {
                        "id": 9,
                        "name": "코딩 실력 향상",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 10,
                        "name": "새로운 기술 습득",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 11,
                        "name": "협업 능력 강화",
                        "status": "IN_PROGRESS"
                    },
                    {
                        "id": 12,
                        "name": "문제 해결 능력 증진",
                        "status": "IN_PROGRESS"
                    }
                ],
                "actions": [
                    [
                        {
                            "id": 41,
                            "name": "알고리즘 문제 풀이 꾸준히 하기",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 42,
                            "name": "클린 코드 원칙 학습 및 적용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 43,
                            "name": "테스트 코드 작성 습관화",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 44,
                            "name": "코드 리뷰 적극적으로 참여",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 45,
                            "name": "다양한 프로젝트 경험 쌓기",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 46,
                            "name": "새로운 프로그래밍 언어 학습 시작",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 47,
                            "name": "관심 있는 프레임워크 또는 라이브러리 깊이 있게 파고들기",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 48,
                            "name": "온라인 강의 및 튜토리얼 활용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 49,
                            "name": "기술 블로그 및 컨퍼런스 영상 시청",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 50,
                            "name": "오픈 소스 프로젝트 참여",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 51,
                            "name": "팀 프로젝트 시 적극적으로 소통",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 52,
                            "name": "다른 개발자의 코드 이해 및 피드백 제공",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 53,
                            "name": "코드 공유 및 협업 도구 능숙하게 사용",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 54,
                            "name": "건설적인 비판 수용 및 개선",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 55,
                            "name": "팀 목표 달성을 위한 헌신",
                            "status": "IN_PROGRESS"
                        }
                    ],
                    [
                        {
                            "id": 56,
                            "name": "복잡한 문제 발생 시 근본 원인 분석",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 57,
                            "name": "다양한 해결 방안 탐색 및 비교",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 58,
                            "name": "디버깅 능력 향상에 집중",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 59,
                            "name": "성공 및 실패 사례 분석을 통한 학습",
                            "status": "IN_PROGRESS"
                        },
                        {
                            "id": 60,
                            "name": "동료 개발자와 함께 문제 해결",
                            "status": "IN_PROGRESS"
                        }
                    ]
                ]
            }
        ]
    },
    "error": null
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200OK
application/json
Body

Modified at 2025-07-31 11:00:13
Previous
만다르트 행동 상태 수정
Next
만다르트 표 단건 조회
Built with