tvpl.api

<back to all web services

GetAllRoleReqest

Lấy tất cả các Role

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

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 tất cả các Role */
export class GetAllRoleReqest implements IGet
{

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

TypeScript GetAllRoleReqest DTOs

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

HTTP + CSV

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

GET /roles HTTP/1.1 
Host: etc-api.vsmlab.vn 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
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"}