Skip to main content
POST
/
admin
/
entity
/
flags
/
activity
Gets all activity for any entity
curl --request POST \
  --url https://api.example.com/admin/entity/flags/activity \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entityID": 123,
  "entityTypeID": 123,
  "languageID": 123,
  "constrainByEventTypes": "<string>",
  "orderBy": "<string>",
  "fieldName": "<string>",
  "startDate": "2024-05-21",
  "endDate": "2024-09-21",
  "eventTypeIDs": null,
  "iserHandles": null,
  "page": 1,
  "pageSize": 10
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
entityID
integer<int32>
entityTypeID
integer<int32>
languageID
integer<int32>
constrainByEventTypes
string | null
orderBy
string | null
fieldName
string | null
startDate
string<date-time> | null
default:2024-05-21
endDate
string<date-time> | null
default:2024-09-21
eventTypeIDs
integer<int32>[] | null
iserHandles
string[] | null
page
integer<int32>
default:1
pageSize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown