List Roles of the Business Role

post/accountmanager.fetchroles/BR/{businessroleId}

Returns all user roles that the specified business role is assigned to.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
businessroleId
required
string

The ID of the business role you want to retrieve user roles for. The businessroleId is the typedId without the BR suffix. For example, businessroleId of the 53.BR is 53.

Responses
200

OK

Response Schema: application/json
object
node
string non-empty
Array of objects non-empty unique
Array (non-empty)
version
number
typedId
string non-empty
uniqueName
string non-empty
module
string non-empty
label
string non-empty
createDate
string non-empty
createdBy
any
lastUpdateDate
string non-empty
lastUpdateBy
any
totalRows
number
status
number
Request samples
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "data": [
      • {
        • "version": 0,
        • "typedId": "string",
        • "uniqueName": "string",
        • "module": "string",
        • "label": "string",
        • "createDate": "string",
        • "createdBy": null,
        • "lastUpdateDate": "string",
        • "lastUpdateBy": null
        }
      ],
    • "totalRows": 0,
    • "status": 0
    }
}