Skip to content

섹션 없는 프로젝트 목록 Default

GET/workspaces/{id}/projects.no-sectionCopied!

프로젝트 섹션에 포함되지 않은 프로젝트 목록을 지정한 정렬 순서로 조회해요.

접근 가능한 사용자

사용자

Request

Query

orderstringrequired
프로젝트 정렬 방식

Possible values: CREATION_DATE_ASCCREATION_DATE_DESCNAME_ASCNAME_DESCDEADLINE_ASCDEADLINE_DESCRECENTLY_VIEWED_ASCRECENTLY_VIEWED_DESC

Example: CREATION_DATE_DESC

Path

idstringrequired
워크스페이스 ID

Response

Returns 200 OK.

[]array
프로젝트 목록
[].idstring
프로젝트 ID

Example: 123e4567-e89b-12d3-a456-426614174000

[].namestring
프로젝트 이름

Example: 리브랜딩 캠페인

[].descriptionstring?
프로젝트 설명

Example: 상반기 리브랜딩 작업

[].thumbnailstring?
프로젝트 썸네일 이미지 경로
[].deadlinestring?
프로젝트 마감 시각

Example: 2026-05-31 23:59:59.000000

[].accessRangestring
프로젝트 접근 범위

Possible values: ONLY_PROJECT_MEMBERALLOW_WORKSPACE_MEMBER

Example: ALLOW_WORKSPACE_MEMBER

[].createdAtstring
프로젝트 생성 시각

Example: 2026-04-26 09:15:00.000000

[].starredboolean
내가 즐겨찾기한 프로젝트인지 여부

Example: true

[].membersarray
프로젝트 멤버 목록
[].members[].idstring
프로젝트 멤버 ID

Example: 6ba7b810-9dad-11d1-80b4-00c04fd430c8

[].members[].namestring
프로젝트 멤버 이름

Example: 김유비

[].members[].avatarstring?
프로젝트 멤버 프로필 이미지 경로
[].connectionMembersarray
프로젝트와 연결된 멤버 목록
[].connectionMembers[].idstring
연결된 멤버 ID

Example: 7ca7b810-9dad-11d1-80b4-00c04fd430c8

[].connectionMembers[].namestring
연결된 멤버 이름

Example: 이비코

[].connectionMembers[].avatarstring?
연결된 멤버 프로필 이미지 경로

Example

bash
curl 'https://api.youvico.com/workspaces/6ba7b810-9dad-11d1-80b4-00c04fd430c8/projects.no-section?order=CREATION_DATE_DESC' \
  -H 'Authorization: Bearer xoau.aB3xK9p2QwR7sT4uV1nM8oP5qL6rN0yZ7eF2gH4jK...'
json
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "리브랜딩 캠페인",
    "description": "상반기 리브랜딩 작업",
    "thumbnail": null,
    "deadline": "2026-05-31 23:59:59.000000",
    "accessRange": "ALLOW_WORKSPACE_MEMBER",
    "createdAt": "2026-04-26 09:15:00.000000",
    "starred": true,
    "members": [
      {
        "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
        "name": "김유비",
        "avatar": null
      }
    ],
    "connectionMembers": [
      {
        "id": "7ca7b810-9dad-11d1-80b4-00c04fd430c8",
        "name": "이비코",
        "avatar": null
      }
    ]
  }
]