mogaco에 대한 모든 API 요청은

헤더에 Bearer Token을 담아야한다.

액세스 토큰을 담아야합니다.

Untitled

GET @/mogaco

GET /mogaco/:id

 {
	id: string;
  groupId: string;
  // group: string;
  memberId: string; // 작성자
  title: string;
  contents: string;
  date: string;
  participantList: {id, nickname, profile}[]  // 참석자
  maxHumanCount: number;
  address: string;
  status: string;
}

해당 게시글 찾기

Untitled

없는 값 찾으려고 할 시

Untitled

POST /mogaco

{
  groupId,
  title,
  contents,
  date,
  maxHumanCount,
  address
}

Untitled