Changelogs
Operations related to the changelogs
Get changelogs by user
Authorizations
Query parameters
limitintegerOptionalDefault:
The limit of per page
10
Responses
200
OK
application/json
Responseall of
and
401
Unauthorized
application/json
403
Forbidden
application/json
get
/changelogsGET /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 by user
Authorizations
Path parameters
changelogIdstringRequiredExample:
The MongoDB ID
63ea10b94a472e003305232b
Pattern: ^[0-9a-fA-F]{24}$
Responses
200
OK
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
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?