보드 그룹 상세 페이지
그룹 스트링캣 상세 페이지 API

보드 그룹 조회
GET
strcat.me/board-groups/[암호화 된 board-group-id]/boards
Headers
Name
Type
Description
Authorization
String
HTTP/1.1 200 OK
{
"data" : {
"isOwner": boolean
"boards" : [{
"id": number
"title": string
"theme": string
"content": [{
"id": number
"text": string
"writer": string
"photoUrl": string (CDN 서버 주소)
}]
} ... ]
}
}
컨텐츠 사진 조회(CDN으로 하면 없어짐)
GET
strcat.me/board-groups/[암호화 된 board-group-id]/boards/[암호화 된 board-id]/contents/[content id]
HTTP/1.1 200 OK
{
"data" : {
// 뭐 들어갈지 모름
}
}
보드 그룹 조회 (삭제)
GET
strcat.me/board-groups/[암호화 된 board-group-id]
보드 그룹과 보드 제목 + 배경색 조회
Headers
Name
Type
Description
Authorization
String
HTTP/1.1 200 OK
{
"data" : {
"isOwner": boolean
"boards" : [{
"id": number
"title": string
"theme": string
"content": [{
"id": number
"text": string
"writer": string
"photoUrl": string (CDN 서버 주소)
}]
} ... ]
}
}
Last updated