Let the platform do the work

get_module_fields_md5

Overview

Retrieves the MD5 hash of the vardefs for the specified modules.

Available APIs

  • SOAP
  • REST

Definition

get_module_fields_md5(session, module_names)

Parameters

Name Type Description
session String Session ID returned by a previous login call.
module_names select_fields | Array The list of modules to retrieve MD5 hashes for.

Result

Name Type Description
result md5_results | Array The call result. Contains a list of module field hashes. Order is based on the module_names parameter.

Change Log

Version Change

Examples

PHP

$get_module_fields_md5_parameters = array(
    //Session id
    "session" => $session_id,

    //The name of the modules to retrieve field hashes for
    'module_names' => array(
        'Contacts',
        'Accounts'
    ),
);

Topics