Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Anchor
Advanced Settings
Advanced Settings

NameDescription

Enable internal used API key?

Enables a simplified authentication method for APIs in the API document to be used within Joget, without requiring configuration from the Manage API Key Menu userview menu.

This option allows a constant API key for convenient API calls within Joget context (example: writing AJAX API call in custom HTML), while still maintaining proper API key management via Manage API Key Menu userview menu for API calls from an external environment. Hence, persisting the same internal API key upon import/export app across different Joget instances.

Here is a sample script that utilizes this feature:

Code Block
languagejs
<script> 
$(function(){ 
    $.ajax({ 
        url:'http://localhost:8080/jw/api/assignment/list', 
        dataType:'json', 
        async:true, 
        headers:{ 
            api_id : 'yourApiDocIdHere', 
            api_key : 'yourInternalApiKeyHere' 
        },
        type: 'GET', 
        success: function(req) { 
            console.log(req); 
        } 
    }); 
});
</script>
Internal API keyKey in any characters of your choice here to represent the API key for internal use only.
Internal API key permissionManage the permission on who can call the APIs internally. See Permission Control.