Alokai

ReplenishmentOrderApiFactory

ReplenishmentOrderApi - factory interface

Signature

ReplenishmentOrderApiFactory: (
	configuration?: Configuration,
	basePath?: string,
	axios?: AxiosInstance
) => {
    getReplenishmentOrder(baseSiteId: string,
	replenishmentOrderCode: string,
	userId: string,
	fields?: string,
	options?: any): AxiosPromise<ReplenishmentOrder>;
    getReplenishmentOrderHistory(baseSiteId: string,
	replenishmentOrderCode: string,
	userId: string,
	currentPage?: number,
	fields?: string,
	pageSize?: number,
	sort?: string,
	options?: any): AxiosPromise<OrderHistoryList>;
    getReplenishmentOrders(baseSiteId: string,
	userId: string,
	currentPage?: number,
	fields?: string,
	pageSize?: number,
	sort?: string,
	options?: any): AxiosPromise<ReplenishmentOrderList>;
    updateReplenishmentOrder(baseSiteId: string,
	replenishmentOrderCode: string,
	userId: string,
	fields?: string,
	options?: any): AxiosPromise<ReplenishmentOrder>;
}

Parameters

NameRequiredTypeDescription
configurationOptionalConfiguration
basePathOptionalstring
axiosOptionalAxiosInstance

Referenced Types

On this page