Home > @vsf-enterprise/sap-commerce-webservices-sdk > CustomerGroupsApiAxiosParamCreator
CustomerGroupsApiAxiosParamCreator variable
CustomerGroupsApi - axios parameter creator
Signature:
CustomerGroupsApiAxiosParamCreator: (configuration?: Configuration) => {
createCustomerGroup: (baseSiteId: string, userGroup: UserGroup, options?: any) => Promise<RequestArgs>;
getCustomerGroup: (baseSiteId: string, groupId: string, fields?: string, options?: any) => Promise<RequestArgs>;
getCustomerGroups: (baseSiteId: string, currentPage?: number, fields?: string, pageSize?: number, options?: any) => Promise<RequestArgs>;
removeUsersFromCustomerGroup: (baseSiteId: string, groupId: string, userId: string, options?: any) => Promise<RequestArgs>;
replaceUsersForCustomerGroup: (baseSiteId: string, groupId: string, members: MemberList, options?: any) => Promise<RequestArgs>;
updateCustomerGroupWithUsers: (baseSiteId: string, groupId: string, members: MemberList, options?: any) => Promise<RequestArgs>;
}