esi-issues icon indicating copy to clipboard operation
esi-issues copied to clipboard

esi-calendar: suggestion for creating calendar events endpoint

Open lunedis opened this issue 8 years ago • 2 comments

currently ESI supports getting calendar events, and reacting to them, but not to create new ones.

lunedis avatar Dec 15 '16 11:12 lunedis

    '/characters/{character_id}/calendar/':
        post:
            description: >-
                Create a new calendar event
            parameters:
              - description: Data used to create the event
                in: body
                name: calendar_event
                required: true
                schema:
                    properties:
                        title:
                            description: The title of the event
                            type: string
                        text:
                            description: The description of the event
                            type: string
                        date:
                            description: The date of the event
                            format: date-time
                            type: string
                        duration:
                            description: The duration of the event
                            format: int64
                            type: integer
                        importance:
                            description: The importance of the event
                            format: int64
                            type: integer
                    type: object
            responses:
                '201':
                    description: calendar event created
                    examples:
                        application/json: 1234567
                    schema:
                        format: int64
                        type: integer
            tags:
              - Calendar

Robbilie avatar Dec 15 '16 11:12 Robbilie

Bumping this up. I feel like having an calendar ingame would greatly increase new player fleeting up with other players. As of now almost all entities in eve use third party calendars which requires new players to register on external services.

Adding the post option for calendar events would allow third party developers copy their events from their external calendars to the game removing the must of using external plugins for this.

paulipa avatar Jan 20 '21 15:01 paulipa