Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

[GET] /community/CommunityEvent/getAvailableCommunityEvents

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "communityEvents": []
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "communityEvents": {
            "type": "array"
        }
    },
    "required": [
        "communityEvents",
        "result"
    ]
}