...
Workload Management Service uses the Microsoft Identity Platform to secure it’s endpoints. If you followed the previous steps sequentially you should have your application registered with the MIP and the only remaining step is to configure your application to pass the JWT Bearer token as part of any communication with any of the WLM endpoints.
Workload Management Service Access
...
For the current available endpoints you can consult the OpenAPI Specification in the following table:
Environments | Endpoint | OpenAPI Specification |
NCD / Development |
| Swagger UI (ncdsafsecsurapp-work-management-service.azurewebsites.net) |
NCT / Test |
| Swagger UI (nctsafsecsurapp-work-management-service.azurewebsites.net) |
NCA / Acceptance |
| Swagger UI (ncasafsecsurapp-work-management-service.azurewebsites.net) |
PCP / Production |
| Swagger UI (pcpsafsecsurapp-work-management-service.azurewebsites.net) |
Apart from the contents of the predefined models, Workload Management Service does not enforce what you store for your specific line of business service. It segregates your data based on the Line of business id that you defined in the list of value service in the initial setup steps.
When making your initial call to WLM, you need to make sure you are passing the following:
Line of business id
Work Item Status Model (Refer to step 5 for the values) - Required for CRSM integration.
Info |
---|
The values for the work item status codes should be verified with the MOLE team, WLM will enforce this in the future. Refer to step 5 for how to create/integrate your WLM status codes. |
Even though the following fields are not enforced, it is worth mentioning that this is where you line of business specific data will reside. Both of the fields are JSONB columns, that can contain complex objects.
initialDetail - In WLM this will be your initial snapshot of the work item. It will not be updated after the initial creation. i.e. PUT method call.
detail - Initially this will be identical to initialDetail, but will contain any subsequent updates to your LOB data.
...