Let the platform do the work

//audit/export GET

Overview

Returns a list of data changes for a specific module.

Request Arguments

Name Type Description Required
module String The name of the module. True

Query Parameters

Name Type Description Required
max_num Integer A maximum number of Audit records to return. The default is 100 records. False
offset Integer The number of records to skip over before records are returned. The default is 0. False

Response Arguments

Name Type Description
next_offset Integer Displays the next offset for retrieval of additional results. -1 will be returned when there are no more records.
records Array An array of results containing matched records.

Response

  {
   "next_offset":-1,
   "records":[
      {
         "id":"b569e480-237a-5921-4382-512ff555fee7",
         "parent_id":"ef1b40aa-5815-4f8d-e909-512d09617ac8",
         "date_created":"03\/01\/2013 12:26am",
         "created_by":"admin",
         "field_name":"Team ID:",
         "data_type":"team_list",
         "before_value_string":"East",
         "after_value_string":"Will"
      },
      {
         "id":"bc0bee72-8398-a0a6-d731-512ff5bfebc7",
         "parent_id":"ef1b40aa-5815-4f8d-e909-512d09617ac8",
         "date_created":"03\/01\/2013 12:26am",
         "created_by":"admin",
         "field_name":"Teams",
         "data_type":"id",
         "before_value_string":"East, Global, West",
         "after_value_string":"Jim, Will"
      }
   ]
}

Change Log

Version Change
v11_11 Added /<module>/audit/export GET endpoint.