Returns a collection of activity logs in a specific board.

External Documentation

To learn more, visit the Monday documentation.

Parameters

ParameterDescription
Board IDThe board’s unique identifier.
FromFrom timestamp (ISO8601).
ToTo timestamp (ISO8601).

Example Output

{
	"data": {
		"boards": [
			{
				"activity_logs": [
					{
						"id": "12345678-ab16-4e48-aa4d-123123123123",
						"created_at": "12345227181212345",
						"event": "create_column",
						"data": "{\"board_id\":1234567890,\"column_id\":\"column\",\"column_title\":\"Title\",\"column_type\":\"multiple-person\"}"
					},
					{
						"id": "87654321-ab16-4e48-aa4d-321321321321",
						"created_at": "12345227181212346",
						"event": "create_column",
						"data": "{\"board_id\":1234567890,\"column_id\":\"column_2\",\"column_title\":\"Title_2\",\"column_type\":\"multiple-person\"}"
					}
				]
			}
		]
	},
	"account_id": 12345678
}

Workflow Library Example

Get Activity Logs with Monday and Send Results Via Email

Preview this Workflow on desktop