_list

Returns the IDs and creation dates of all non-archived versions of an object which can have changes undone. (Currently only on Forms)

Parameters

obj_id

The ID of the object, available versions of this object will be retrieved.

obj_type

The type of object which this function is retrieving versions from:

  • forms

fields

An array of additional fields about the versions which can be returned:

  • name

  • data

  • obj_id

  • obj_type

Example

FM_api('Undos_list',[
    'obj_id'=>'580335',
    'obj_type'=>'forms',
    'fields'=>'["name","data"]'
    ]
);

Result

On Success

Without the "fields" parameter:

With the "fields" parameter, including the names and data:

Last updated