Appearance
연결된 목록 Default
GET/workspaces/{id}/projects.connectedCopied!
다른 워크스페이스에서 연결된 프로젝트 목록을 지정한 정렬 순서로 조회해요.
접근 가능한 사용자
사용자
접근 권한
프로젝트 접근 방식
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?프로젝트 설명
[].thumbnailstring?프로젝트 썸네일 이미지 경로
[].deadlinestring프로젝트 마감일
Example: 2026-05-31
[].accessRangestring프로젝트 접근 범위
Possible values: ONLY_PROJECT_MEMBERALLOW_WORKSPACE_MEMBER
Example: ONLY_PROJECT_MEMBER
[].createdAtstring프로젝트 생성 시각
Example: 2026-04-26 09:15:00.000000
[].destroyedAtstring?삭제 예정 시각
[].starredboolean내가 즐겨찾기한 프로젝트인지 여부
Example: false
[].membersarray프로젝트 멤버 목록
[].members[].idstring프로젝트 멤버 ID
[].members[].namestring프로젝트 멤버 이름
[].members[].avatarstring?프로젝트 멤버 프로필 이미지 경로
[].connectionMembersarray프로젝트와 연결된 멤버 목록
[].connectionMembers[].idstring연결 멤버 ID
[].connectionMembers[].namestring연결 멤버 이름
[].connectionMembers[].avatarstring?연결 멤버 프로필 이미지 경로
[].workspaceobject원본 워크스페이스 정보
[].workspace.idstring원본 워크스페이스 ID
Example: 6ba7b810-9dad-11d1-80b4-00c04fd430c8
[].workspace.namestring원본 워크스페이스 이름
Example: 유비코 디자인팀
[].workspace.avatarstring?원본 워크스페이스 프로필 이미지 경로
Example
bash
curl 'https://api.youvico.com/workspaces/6ba7b810-9dad-11d1-80b4-00c04fd430c8/projects.connected?order=CREATION_DATE_DESC' \
-H 'Authorization: Bearer xoau.aB3xK9p2QwR7sT4uV1nM8oP5qL6rN0yZ7eF2gH4jK...'json
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "파트너 캠페인",
"description": null,
"thumbnail": null,
"deadline": "2026-05-31",
"accessRange": "ONLY_PROJECT_MEMBER",
"createdAt": "2026-04-26 09:15:00.000000",
"destroyedAt": null,
"starred": false,
"members": [],
"connectionMembers": [],
"workspace": {
"id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"name": "유비코 디자인팀",
"avatar": null
}
}
]