Changelog endpoints

About Droptop Four changelog

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
get
GET /v1/changelog/{version} HTTP/1.1
Host: api.droptopfour.com
Accept: */*
{
  "version": "text",
  "new_features": [
    "text"
  ],
  "modifications": [
    "text"
  ],
  "bug_fixes": [
    "text"
  ]
}

Last updated

Was this helpful?