Avisi cloud logo
Organisations

List Activity

GET
/api/v1/organisations/{organisationSlug}/activity

Query Parameters

page
Required
integer

Format: "int32"

pageable
Required
object

Optional. When omitted: pageSize=50, pageNumber=0, sortDirection=DESC, sort=createdAt

Path Parameters

organisationSlug
Required
string

curl -X GET "http://localhost:8090/api/v1/organisations/string/activity?page=0&pageable=%7B%0A++%22page%22%3A+0%2C%0A++%22size%22%3A+1%2C%0A++%22sort%22%3A+%5B%0A++++%22string%22%0A++%5D%0A%7D"

OK

{
  "totalElements": 0,
  "totalPages": 0,
  "content": [
    {
      "actor": {
        "username": "string",
        "email": "string",
        "id": 0
      },
      "message": "string",
      "type": "string",
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ],
  "number": 0,
  "size": 0,
  "first": true,
  "last": true,
  "sort": [
    {
      "direction": "string",
      "nullHandling": "string",
      "ascending": true,
      "property": "string",
      "ignoreCase": true
    }
  ],
  "numberOfElements": 0,
  "pageable": {
    "offset": 0,
    "sort": [
      {
        "direction": "string",
        "nullHandling": "string",
        "ascending": true,
        "property": "string",
        "ignoreCase": true
      }
    ],
    "paged": true,
    "pageNumber": 0,
    "pageSize": 0,
    "unpaged": true
  },
  "empty": true
}