Contributors Docs
HomeDiscord ServerDocs
  • 👋Welcome
  • 🌎Localization
    • Translator infos
    • Calendar Creation
    • Manage translations
  • 💾Useful links
    • Droptop Links
  • 🖼️Media Kit
    • Droptop Media Kit
  • 🔗Droptop API
    • Endpoints
      • Changelog endpoints
      • Community Apps endpoints
      • Community Themes endpoints
      • Droptop endpoints
Powered by GitBook
On this page

Was this helpful?

  1. Droptop API
  2. Endpoints

Changelog endpoints

About Droptop Four changelog

PreviousEndpointsNextCommunity Apps endpoints

Last updated 1 year ago

Was this helpful?

🔗

Get the Droptop Four changelog

get

Gets the Droptop Four entire changelog

Responses
200
Successful operation
application/json
get
GET /v1/changelog HTTP/1.1
Host: api.droptopfour.com
Accept: */*
200

Successful operation

{
  "changelog": [
    {
      "version": "text",
      "new_features": [
        "text"
      ],
      "modifications": [
        "text"
      ],
      "bug_fixes": [
        "text"
      ]
    }
  ]
}

Get changenotes of a specific version

get

Gets the changenotes of a specific Droptop version

Path parameters
versionstringRequired

The version of Droptop

Responses
200
Successful operation
application/json
400
Invalid Droptop version
application/json
404
Changenote not found
application/json
get
GET /v1/changelog/{version} HTTP/1.1
Host: api.droptopfour.com
Accept: */*
{
  "version": "text",
  "new_features": [
    "text"
  ],
  "modifications": [
    "text"
  ],
  "bug_fixes": [
    "text"
  ]
}
  • GETGet the Droptop Four changelog
  • GETGet changenotes of a specific version