Skip to content

Achievement API Docs

장윤성 edited this page Sep 17, 2022 · 1 revision

GET

모든 업적

https://echorous.herokuapp.com/achievement

    
    [	
    	{
            "id": 1,
            "name": "올라운더",
            "success": 1,
            "description": "모든 분야 오염도 15% 미만 달성",
            "count": 0,
            "soil": 15,
            "air": 15,
            "radio": 15,
            "trash": 15,
            "ocean": 15,
            "approval": 0,
            "capital": 0,
            "product": 0,
            "disaster": 0,
            "universe": 0,
            "year": 0
        },
        {
            "id": 2,
            "name": "미래지향적 국가",
            "success": 1,
            "description": "모든 분야 오염도 25%미만 달성 & 지지도 80이상 달성",
            "count": 0,
            "soil": 25,
            "air": 25,
            "radio": 25,
            "trash": 25,
            "ocean": 25,
            "approval": 80,
            "capital": 0,
            "product": 0,
            "disaster": 0,
            "universe": 0,
            "year": 0
        }
    ]

성공/실패 별 업적

https://echorous.herokuapp.com/achievement/category/{success} success : [성공 : 1, 실패 : 0]

    [	
    		{
            "id": 9,
            "name": "콜록콜록",
            "success": 0,
            "description": "오염100% 달성 &모든 오염 수치 80% 이상 달성",
            "count": 0,
            "soil": 100,
            "air": 100,
            "radio": 100,
            "trash": 100,
            "ocean": 100,
            "approval": 0,
            "capital": 0,
            "product": 0,
            "disaster": 0,
            "universe": 0,
            "year": 0
        },
        {
            "id": 10,
            "name": "콜록콜록",
            "success": 0,
            "description": "오염100% 달성 &모든 오염 수치 80% 이상 달성",
            "count": 0,
            "soil": 80,
            "air": 80,
            "radio": 80,
            "trash": 80,
            "ocean": 80,
            "approval": 0,
            "capital": 0,
            "product": 0,
            "disaster": 0,
            "universe": 0,
            "year": 0
        }
    ]

id별 업적

https://echorous.herokuapp.com/achievement/category/{id}

    
    {
        "id": 1,
        "name": "올라운더",
        "success": 1,
        "description": "모든 분야 오염도 15% 미만 달성",
        "count": 0,
        "soil": 15,
        "air": 15,
        "radio": 15,
        "trash": 15,
        "ocean": 15,
        "approval": 0,
        "capital": 0,
        "product": 0,
        "disaster": 0,
        "universe": 0,
        "year": 0
    }
Clone this wiki locally