보드 그룹 상세 페이지

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

보드 그룹 조회

GET strcat.me/board-groups/[암호화 된 board-group-id]/boards

Headers

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" : {
        // 뭐 들어갈지 모름
	}
}
Update 231115

nickname -> writer

Update 231117

Add "CDN" on GET strcat.me/board-group/[암호화 된 board-id]/content and strcat.me/board-group/[암호화 된 board-id]/content/[content id]

Update 231118

nickname -> writer

Update 231120
  • backgroundColor -> theme

Update 231124
  • 보 모든 보드 조회로 api 합침

보드 그룹 조회 (삭제)

GET strcat.me/board-groups/[암호화 된 board-group-id]

보드 그룹과 보드 제목 + 배경색 조회

Headers

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