| Name | Description |
|---|---|
API ID | This is a auto-generated unique API ID. |
| API Document Name | Name for the API document. |
| Description | Description for the API document. |
| Name | Description |
|---|---|
Enable API for Internal Use? | Enables a convenient authentication method for all APIs in the current API document that will be consumed internally within Joget. Here is a sample script used internally in Joget that utilizes this feature: <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 key | Key in any characters of your choice here to represent the API key for internal use only. |
| Internal API key permission | Manage the permission on who can call the APIs internally. See Permission Control. |


