Appearance
정보 가져오기 Default
GET/projects/{id}Copied!
프로젝트의 기본 정보를 조회해요.
접근 가능한 사용자
사용자비로그인 사용자
접근 권한
Request
Query
accessKeystring | undefined 액세스 링크로 조회할 때 사용하는 접근 키
Path
idstringrequired 프로젝트 ID
Response
Returns 200 OK.
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: ALLOW_WORKSPACE_MEMBER
createdAtstring | undefined프로젝트 생성 시각
Example: 2026-04-26 09:15:00.000000
destroyedAtstring?삭제 예정 시각
starredboolean내가 즐겨찾기한 프로젝트인지 여부
Example: false
sectionobject내 프로젝트 섹션 정보
section.idstring?내 프로젝트 섹션 ID
workspaceobject워크스페이스 정보
workspace.idstring워크스페이스 ID
Example: 6ba7b810-9dad-11d1-80b4-00c04fd430c8
Example
bash
curl 'https://api.youvico.com/projects/6ba7b810-9dad-11d1-80b4-00c04fd430c8' \
-H 'Authorization: Bearer xoau.aB3xK9p2QwR7sT4uV1nM8oP5qL6rN0yZ7eF2gH4jK...'json
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "리브랜딩 캠페인",
"description": "상반기 리브랜딩 작업",
"thumbnail": null,
"deadline": "2026-05-31",
"accessRange": "ALLOW_WORKSPACE_MEMBER",
"createdAt": "2026-04-26 09:15:00.000000",
"destroyedAt": null,
"starred": false,
"section": { "id": null },
"workspace": { "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8" }
}