HTTP Operation Type Object DTO Why-DTOs?
Query userAccessPolicyCheck UserAccessPolicyCheckInput

Description

The UserAccessPolicyCheck service enables you to verify the current user’s permissions to perform specific actions within the application, based on their roles and access rights.

This service provides a mechanism to dynamically enable or disable features, or adjust the UI elements (like buttons or links), ensuring a tailored user experience that aligns with the user’s permissions.

See also: Key concepts / Users management

img

Functionality

Required Parameters

To use this service, you need to provide the following input parameter:

Response

The service returns an array of objects, each containing the following fields:

Key Value
Authorization Bearer Current access Token How to find?
X-TenantId Current tenant id How to find?
X-OrganizationId Current organization Id How to find?
x-api-key Primary or secondary subscription key of your app How to find?
GraphQL Query
query userAccessPolicyCheck($actions: [String!]!) {
  userAccessPolicyCheck(actions: $actions) {
    action
    isAllowed
  }
}
GraphQL Variables
{
  "actions": ["createCustomer", "deleteSalesQuote", "accountingAccounts"]
}
Example Response
{
  "data": {
    "userAccessPolicyCheck": [
      {
        "action": "createCustomer",
        "isAllowed": true
      },
      {
        "action": "deleteSalesQuote",
        "isAllowed": false
      },
      {
        "action": "accountingAccounts",
        "isAllowed": true
      }
    ]
  }
}

userAccessPolicyCheck Input parameters

Fields Type Description
actions Array[String] List of action names to check permissions for

userAccessPolicyCheck Response

Fields Type Description
action String Name of the action checked
isAllowed Boolean Indicates whether the action is permitted for the current user
Info
  • For the documentPdfPreview operation, it is necessary to specify the document type as part of the operation name according to the type of document being accessed.
    • documentPdfPreviewSalesQuote for sales quotes,
    • documentPdfPreviewSalesOrder for orders,
    • documentPdfPreviewSalesDeliveryNote for delivery notes,
    • documentPdfPreviewSalesInvoice for invoices.

  • The userAccessPolicyCheck action should not be included in the list of actions because this operation needs to be functional regardless of the user’s profile and is not subject to access authorization.

Error Management

If an attempt is made to check permissions for actions that are not recognized by the API, such as incorrectly named operations, this error will be returned.
Instead of requesting permissions for customers and salesTariffs, we request them as an example of error for xustomers and xalesTariffs.

{
    "errors": [
        {
            "message": "global.businessErrors.unknownActionNames",
            "locations": [
                {
                    "line": 2,
                    "column": 3
                }
            ],
            "path": [
                "userAccessPolicyCheck"
            ],
            "extensions": {
                "details": "xustomers|xalesTariffs"
            }
        }
    ]
}

This error can also be triggered if the action userAccessPolicyCheck is passed as a parameter, as this action is not subject to access control rules and should not be included in the list of actions for permission checking.

When to Call userAccessPolicyCheck?

Since it is possible to assign different roles to the same user for different organizations, userAccessPolicyCheck must be called for each organization accessible to the current user.

Example:

John has an Admin role for organization ORG1 but has a ReadOnly role for organization ORG2.
Your application utilizing the public API provides a selection interface for the list of organizations accessible to the current user.
Here, John will see both ORG1 and ORG2 in the list.
Your application also stores the last organization used by John in local preferences.

As a result, it is necessary to call userAccessPolicyCheck and trigger the application interface to update and respect the refreshed permissions:

How the Sample Quotes App Utilizes userAccessPolicyCheck ?

Explore the Must-See Sage Active Public API V1 Quoting Example!

Dive into the invaluable resource of our front-end app example!
This example showcases the practical use of Sage Active Public API for efficient quote management.

It’s a perfect demonstration of how you can leverage the API’s capabilities in real-world scenarios, significantly simplifying the quoting process.

Now, this application also allows you to import a complete set of demo data into the current company if it does not yet have any data.

Click here to access the example : Sample quotes

img

To ensure certain actions within the Sample Quotes app are not permitted through the application interface if the current user does not have a role that allows them to utilize all functionalities, the logic is as follows:

Declaration of all queries and mutations in an object qm that contains a list of all objects used by the app.
For each operation, the policy parameter contains the name of the action.

const qm = {
  queryUserProfile: {
    context: "User Profile",
    policy: "userProfile",
    body: `
      query {
        userProfile {
          applicationLanguageCode
          authenticationEmail
          fullName
        }
      }
    `
  },
  // Other operations follow...
  updateSalesQuote: {
    context: "Sales Quote Update",
    policy: "updateSalesQuote",
    body: `
      mutation ($values: SalesQuoteUpdateGLDtoInput!) {  
        updateSalesQuote (input: $values) {
          id
        }
      }
    `
  }
};