My Portfolio
    My Portfolio
    • Introduction
    • Getting Started
    • Users
    • Roles
      • Create Role
        POST
    • Schemas
      • Users
      • Roles
      • Permissions
      • Owners
      • Banks
      • Issuers
      • Deposits

    Roles

    Roles are a core concept in user authorization that define what a user is allowed to do within a system. Instead of assigning permissions directly to individual users, permissions are grouped into roles, and roles are then assigned to users. This approach is commonly known as Role-Based Access Control (RBAC).

    {
        "_id": "string",
        "code": "string",
        "name": "string",
        "permissions": [
            "string"
        ],
        "notes": "string",
        "created_by_id": "string",
        "created_at": "string",
        "updated_by_id": "string",
        "updated_at": "string"
    }
    Built with