tvpl.api

<back to all web services

RoleByUserIdRequest

Lấy role của người dùng theo UserId

Requires Authentication
Required role:super-admin
The following routes are available for this service:
GET/roles/byuserId

export class Roles
{
    public id: number;
    // @StringLength(50)
    public name: string;

    public createdAt?: string;
    public deletedAt?: string;
    public updatedAt?: string;
    public updatedBy?: number;
    public deletedBy?: number;
    public createdBy?: number;
    // @Ignore()
    public permission?: string[];

    public constructor(init?: Partial<Roles>) { (Object as any).assign(this, init); }
}

export class GetAllRoleResponse implements IResponseRequest
{
    public roles?: Roles[];
    public code: number;
    public message: string;

    public constructor(init?: Partial<GetAllRoleResponse>) { (Object as any).assign(this, init); }
}

/** @description Lấy role của người dùng theo UserId */
export class RoleByUserIdRequest implements IGet
{
    public userId: number;

    public constructor(init?: Partial<RoleByUserIdRequest>) { (Object as any).assign(this, init); }
}

TypeScript RoleByUserIdRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /roles/byuserId HTTP/1.1 
Host: etc-api.vsmlab.vn 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	roles: 
	[
		{
			id: 0,
			name: String,
			createdAt: "0001-01-01T00:00:00.0000000+07:06",
			deletedAt: "0001-01-01T00:00:00.0000000+07:06",
			updatedAt: "0001-01-01T00:00:00.0000000+07:06",
			updatedBy: 0,
			deletedBy: 0,
			createdBy: 0,
			permission: 
			[
				String
			]
		}
	],
	code: 0,
	message: String
}