Authorisation Management
Last updated 11 months ago
Details for the authorization request + RequestInfo meta data.
Ok
const response = await fetch('/access/v1/actions/_authorize', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
Request for getting actions.
Search action(s) successful
const response = await fetch('/access/v1/actions/mdms/_get', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "actions": [ { "name": "text", "tenantId": "text" } ] }), }); const data = await response.json();
{ "actions": [ { "id": 0, "name": "text", "queryParams": "text", "url": "text", "parentModule": 0, "orderNumber": 0, "displayName": "text", "enabled": false, "createdBy": 0, "createdDate": "2025-01-22", "lastModifiedBy": 0, "lastModifiedDate": "2025-01-22", "tenantId": "text", "serviceCode": 0 } ] }