The Activity Object
This is an object representing an activity.
Properties
-
id
numberThe numeric ID of the activity
-
trackable_id
numberId of reference object that was changed
-
trackable_type
objectType of the referenced object
-
owner_id
numberID of the user that changed made the activity
-
owner_type
stringDefault: "User"
-
key
objectKey defined by type.action (eg: story.create, story.update, component.create)
-
parameters
objectAdditional parameter passed; Default: null
-
recipient_id
numberDefault: null
-
recipient_type
stringDefault: null
-
created_at
stringCreation date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
updated_at
stringLatest update date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
space_id
numberNumeric ID of a space
Example Object
{
"activity": {
"id": 5405,
"trackable_id": null,
"trackable_type": null,
"owner_id": null,
"owner_type": null,
"key": null,
"parameters": {
},
"recipient_id": null,
"recipient_type": null,
"created_at": "2018-11-10T15:32:58.649Z",
"updated_at": "2018-11-10T15:32:58.649Z",
"space_id": 606
}
}