Skip to main content

admin/logs/traces/last/{minutes}

Wordbee logs changes, deletions and insertions of business objects down to field level. This covers changes to orders, projects, jobs, companies, prices, etc. These business objects are tracked are listed here.

This method returns the traces of the last minutes (as per parameter). 

URL

(GET) /api/admin/logs/traces/last/{minutes}?skip=&take=

PARAMETERS

The URL parameters are:

minutes

Optional. Specifies the time period in minutes. For example, a value of 10 will return the traces of the past 10 minutes.

If not specified, the value is 60 (1 hour).

The value must be between 1 and 240 which is 4 hours.

int?, Optional
skip

Optional. Used for pagination. The number of events to skip.

Value is 0 by default.

int?, Optional
take

Optional. Used for pagination. The number of events to retrieve.

Value is 1000 by default. The maximum value is 10000.

int?, Optional


Note, if you are logging a large amount of events, please make sure to use pagination properties skip and take

RESULTS

The result is a JSON object with these properties:

rows

An array of trace events. See details here: Trace details

datetime
skip

The skip parameter value.

int
takeThe take parameter value.int
hasmore

True if there are more results.

To fetch the next set of results, call the method again with skip/take set accordingly. Example:

  • First batch: ?skip=0&take=1000
  • Second batch: ?skip=1000&take=1000
  • etc.
bool


EXAMPLE

A few lines of a log file: 

CODE
{
	"rows": [{
		"v": 1,
		"a": "i",
		"oc": "ps",
		"key": {
			"uid": 138
		},
		"dt": "2017-07-10T16:18:53.6961066Z",
		"uid": 1,
		"cid": 1,
		"ts": "0ec12110-50c9-4c60-927e-3a250eea5ccf",
		"tsc": "new account",
		"flds": [{
			"f": "RssNotifications",
			"v": "Personal"
		},
		{
			"f": "EmailNotifications",
			"v": "Personal"
		},
		{
			"f": "NotifyOrders",
			"v": "Personal"
		},
		{
			"f": "NotifyJobs",
			"v": "Personal"
		},
		{
			"f": "PersonId",
			"v": "0"
		},
		{
			"f": "AddressId",
			"v": "1"
		},
		{
			"f": "FirstName",
			"v": "creation"
		},
		{
			"f": "LastName",
			"v": "test"
		},
		{
			"f": "Email",
			"v": "cpons@wordbee.com"
		},
		{
			"f": "PersonCode",
			"v": "ct"
		},
		{
			"f": "RssNotifications_",
			"v": "1"
		},
		{
			"f": "EmailNotifications_",
			"v": "1"
		},
		{
			"f": "IsActive",
			"v": "False"
		},
		{
			"f": "LoginAttempts",
			"v": "0"
		},
		{
			"f": "Password",
			"v": "*****"
		},
		{
			"f": "PwdDate",
			"v": "10/07/2017 16:18:51"
		},
		{
			"f": "NotifyOrders_",
			"v": "0"
		},
		{
			"f": "NotifyJobs_",
			"v": "0"
		}]
	},
	{
		"v": 1,
		"a": "c",
		"oc": "ps",
		"key": {
			"uid": 138
		},
		"dt": "2017-07-10T16:19:36.6244773Z",
		"ts": "79a5aa40-b302-44ff-baaf-71d88b4c67fd",
		"flds": [{
			"f": "PersonCode",
			"v": "cao",
			"p": "ct"
		}]
	},
	{
		"v": 1,
		"a": "d",
		"oc": "ps",
		"key": {
			"uid": 138
		},
		"dt": "2017-07-10T16:19:46.7389286Z",
		"ts": "313b163f-211c-41d4-bd0e-35496b560fe8",
		"tsc": "Delete",
		"flds": []
	}],
	"skip": 0,
	"take": 1000,
	"hasmore": false
}




JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.