-
Notifications
You must be signed in to change notification settings - Fork 1
앱 버전 비교
invitejay edited this page Jan 29, 2021
·
2 revisions
[POST] ~/api/v1/asker/main/version
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
header | Content-Type | application/json |
body | platform | 플랫폼 : String |
body | app_version | 버전 값 : String |
platform : "ios", "android"
{
"platform": "ios",
"app_version": "0.0.1"
}
성공
{
"code": "is_latest_app_version",
"message": "App is latest version."
}
최신 버전이 아닌 경우
{
"code": "not_latest_app_version",
"message": "App is not latest version."
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}