Skip to content

@mbanq/core-sdk-js v0.50.0


@mbanq/core-sdk-js / commands / GetClientClassification

Function: GetClientClassification()

GetClientClassification(clientId): Command<{ clientId: number; }, { applicableDate: string; clientId: number; currentClassification: { active: boolean; charges: object[]; codeName: string; description: string; id: number; isMasked: boolean; mandatory: boolean; name: string; position: number; systemDefined: boolean; }; currentClassificationStartDate: string; upcomingClassification?: { active: boolean; charges: object[]; codeName: string; description: string; id: number; isMasked: boolean; mandatory: boolean; name: string; position: number; systemDefined: boolean; }; upcomingClassificationRequestId: number; }>

Defined in: src/commands/rest/clientClassification.ts:17

Retrieves the classification for a client.

Parameters

clientId

number

The id of the client to retrieve the classification for.

Returns

Command<{ clientId: number; }, { applicableDate: string; clientId: number; currentClassification: { active: boolean; charges: object[]; codeName: string; description: string; id: number; isMasked: boolean; mandatory: boolean; name: string; position: number; systemDefined: boolean; }; currentClassificationStartDate: string; upcomingClassification?: { active: boolean; charges: object[]; codeName: string; description: string; id: number; isMasked: boolean; mandatory: boolean; name: string; position: number; systemDefined: boolean; }; upcomingClassificationRequestId: number; }>

A promise that resolves to the classification for the given client.

Released under the MIT License.