GET

https://api.walkme.com/public/v1/systems/:SYSTEM_GUID/package/checksum

The Checksum API is used to fetch a list of all the Javascript and configuration files,
That deployed to customer’s production environment, and provides the checksum of each file.


Path Variables


SYSTEM_GUID String Required

System GUID in the format of (8,4,4,4,12): XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX


Supported Attributes


envId Number Required

The environment ID of the files.

includeBom boolean

If false, checksum shall not include BOM calculation (default: true).

isSelfHosted boolean

If false, checksum shall not include self-hosted files. If true, checksum shall include self-hosted files + include checksum of self-hosted ZIP file. (default: user self-hosted property value)


{  
   "files":[  
      {  
         "path":"https://file.path1.js",
         "sha256":"b2c4f3c815ab969b206e2fd0dedf493d0bdcf3e233"
      },
      {  
         "path":"https://file.path2.js",
         "sha256":"d0dedf493d0bdcf3e233c7b21cca2fbee3ab8ca93a"
      },
      {  
         "path":"https://file.path3.js",
         "sha256":"ab969b206e2fd0dedf493d0bdcf3e233c7b21cca2f"
      }
   ]
}