Changelogs

Operations related to the changelogs

Get changelogs

get
/changelogs

Get changelogs by user

Authorizations
Query parameters
limitintegerOptional

The limit of per page

Default: 10
Responses
200

OK

application/json
Responseall of
and
get
/changelogs
GET /api/changelogs HTTP/1.1
Host: abp-api.akinon.net
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "totalDocs": 100,
  "limit": 10,
  "page": 1,
  "totalPages": 10,
  "pagingCounter": 1,
  "hasPrevPage": false,
  "hasNextPage": true,
  "prevPage": 1,
  "nextPage": 3,
  "docs": [
    {
      "_id": "63ea10b94a472e003305232b",
      "targetVersion": "1.0.0",
      "summary": "This is a summary",
      "markdown": "text",
      "rank": 0,
      "createdAt": "2020-07-23T12:00:00.000Z",
      "updatedAt": "2020-07-23T12:00:00.000Z"
    }
  ]
}

Get a changelog

get
/changelogs/{changelogId}

Get a changelog by user

Authorizations
Path parameters
changelogIdstringRequired

The MongoDB ID

Example: 63ea10b94a472e003305232bPattern: ^[0-9a-fA-F]{24}$
Responses
200

OK

application/json
get
/changelogs/{changelogId}
GET /api/changelogs/{changelogId} HTTP/1.1
Host: abp-api.akinon.net
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "_id": "63ea10b94a472e003305232b",
  "targetVersion": "1.0.0",
  "summary": "This is a summary",
  "markdown": "text",
  "rank": 0,
  "createdAt": "2020-07-23T12:00:00.000Z",
  "updatedAt": "2020-07-23T12:00:00.000Z"
}

Last updated

Was this helpful?