GET
/
api
/
v1
/
apps
/
{uuid}
/
activity
Get an application activity
curl --request GET \
  --url https://app.miget.com/api/v1/apps/{uuid}/activity \
  --header 'Authorization: <api-key>'
{
  "action": "<string>",
  "description": "<string>",
  "resource": {},
  "actor": {},
  "timestamp": "2023-11-07T05:31:56Z",
  "source": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token for authentication. Format: 'Bearer {token}'

Headers

X-Workspace-Id
string

Workspace ID (uses default workspace if not provided)

Path Parameters

uuid
string
required

Application UUID

Query Parameters

page
integer<int32>
default:1

Page number

limit
integer<int32>
default:7

Number of items per page

Response

Get an application activity

Api_V1_Entities_Activity model

action
string
required

Action key (create, update, destroy, or event-specific key)

description
string
required

Human-readable description of the activity

resource
object
required

Resource the activity is about (fields: type, name, uuid)

actor
object
required

User who performed the action (fields: uuid, name, email); null for system actions

timestamp
string<date-time>
required

When the activity occurred (ISO8601)

source
string
required

Origin of the action (api, ui)