Public
Documentation Settings

몽글

Introduction

몽글 페이지의 API 명세서 입니다.

유저

유저 프로필

GET유저프로필을 가져오는 함수

https://www.api-mongle.shop/user/profile
AUTHORIZATIONBearer Token
Token

<token>

Example Request
curl
curl --location 'https://www.api-mongle.shop/user/profile'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

PUT유저프로필을 수정하는 함수

https://www.api-mongle.shop/user/profile
AUTHORIZATIONBearer Token
Token

<token>

Bodyraw (json)
json
{
    "fullname" : "팀 당근밭"
}
Example Request
curl
curl --location --request PUT 'https://www.api-mongle.shop/user/profile' \
--data '{
    "fullname" : "팀 당근밭"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GET프로필의 카테고리를 가져오는 함수(이미 등록한 것 빼고)

https://www.api-mongle.shop/user/profile/category/
AUTHORIZATIONBearer Token
Token

<token>

Example Request
curl
curl --location 'https://www.api-mongle.shop/user/profile/category/'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POST프로필에 카테고리를 더하는 함수

https://www.api-mongle.shop/user/profile/category/
AUTHORIZATIONBearer Token
Token

<token>

Bodyraw (json)
json
{
    "categories":[1]
}
Example Request
curl
curl --location 'https://www.api-mongle.shop/user/profile/category/' \
--data '{
    "categories":[1]
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers