Function EndUsersApiFactory
- EndUsersApiFactory(configuration?, basePath?, axios?): {
apiEndUsersBulkFilePost(file?: File, options?: RawAxiosRequestConfig): AxiosPromise<EndUser[]>;
apiEndUsersInvitePost(endUserReadDeets?: EndUserReadDeets, options?: RawAxiosRequestConfig): AxiosPromise<string>;
apiEndUsersPost(endUserCreateDeets?: EndUserCreateDeets, options?: RawAxiosRequestConfig): AxiosPromise<EndUser>;
} Parameters
Optional
configuration: ConfigurationOptional
basePath: stringOptional
axios: AxiosInstance
Returns {
apiEndUsersBulkFilePost(file?: File, options?: RawAxiosRequestConfig): AxiosPromise<EndUser[]>;
apiEndUsersInvitePost(endUserReadDeets?: EndUserReadDeets, options?: RawAxiosRequestConfig): AxiosPromise<string>;
apiEndUsersPost(endUserCreateDeets?: EndUserCreateDeets, options?: RawAxiosRequestConfig): AxiosPromise<EndUser>;
}
apiEndUsersBulkFilePost:function
- apiEndUsersBulkFilePost(file?, options?): AxiosPromise<EndUser[]>
Parameters
Optional
file: FileOptional
options: RawAxiosRequestConfig
Returns AxiosPromise<EndUser[]>
apiEndUsersInvitePost:function
- apiEndUsersInvitePost(endUserReadDeets?, options?): AxiosPromise<string>
Parameters
Optional
endUserReadDeets: EndUserReadDeetsOptional
options: RawAxiosRequestConfig
Returns AxiosPromise<string>
apiEndUsersPost:function
- apiEndUsersPost(endUserCreateDeets?, options?): AxiosPromise<EndUser>
Returns AxiosPromise<EndUser>
EndUsersApi - factory interface export