Learn R Programming

civis (version 3.1.3)

users_list_me_activity: Get recent activity for logged-in user

Description

Get recent activity for logged-in user

Usage

users_list_me_activity(status = NULL, author = NULL, order = NULL)

Value

An array containing the following fields:

id

string, The ID of the object.

name

string, The name of the object.

type

string, The type of the object.

user

string, The user associated with the object.

category

string, The job category, if the object is a job.

state

string, The state of the object. One of "succeeded", "failed", or "running".

updatedAt

string, When the object was last updated.

nextRunAt

string, When the job is next scheduled to run, if the object is a job.

lastRunId

string, The ID of the last run, if the object is a job.

lastRunState

string, The state of the last run, if the object is a job. One of "succeeded", "failed", or "running".

Arguments

status

string optional. The status to filter objects by. One of "all", "succeeded", "failed", or "running".

author

string optional. A comma separated list of author IDs to filter objects by.

order

string optional. The order of the jobs. If set to "name", the order is DESC alphabetically. If set to "newest", the order is DESC by most recently updated.