Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
changes.mady.by.user Justin
Saved on Sept 04, 2019
Saved on Dec 04, 2019
Organization API can perform functions to interact or exchange data with Organization.
Image RemovedImage Added
AnchorAdd organizationAdd organizationAdd organization
Add a new organization.
Name
{ "id": "apiTestOrg", "name": "API Test Org", "description": "This is an organization created by API." }
AnchorAssign user to organizationAssign user to organizationAssign user to organization
Assign a Joget user to an organization.
{ "userId": "david", "startDate": null, "endDate": null, "employeeCode": null, "gradeId": "G-002", "departmentId": "D-007", "organizationId": "ORG-001" }
AnchorDelete organizationDelete organizationDelete organization
Delete an organization via organization ID.
{ "date": "Wed Aug 28 15:43:58 SGT 2019", "code": "200", "message": "Successful operation" }
AnchorFind organizationFind organizationFind organization
Gets all organizations by default.
Able to filter or sort the returned results via parameters.
Organization data column to sort.
Must be used in conjunction with "sortDescending" parameter.
Sort the specified "sort" parameter value in ascending or descending order.
Expects a boolean value.
Must be used in conjunction with "sort" parameter.
[ { "id": "ORG-001", "name": "Joget.Org", "description": "" } ]
AnchorGet organization by IDGet organization by IDGet organization by ID
Get details of a organization via organization ID.
AnchorUnassign user from organizationUnassign user from organizationUnassign user from organization
Unassign a Joget user from an organization.
{ "date": "Thu Dec 05 03:29:56 SGT 2019", "code": "200", "message": "Successful operation" }
AnchorUpdate organizationUpdate organizationUpdate organization
Update the details of a organization.
{ "id": "apiTestOrg", "name": "API Test Org", "description": "This organization is updated via API." }
...