# Request
The Request object is returned when calling the api() method on a model. This object is the foundation for Vuex ORM Axios and enables you to call many of the supported axios methods to perform an API request. Any Custom Actions will also be defined on the Request object.
const request = User.api()
You can call request methods directly through chaining.
const response = User.api().get()
# Constructor
constructor(model: typeof Model)By default, calling the
api()method on a model will attach the model class to the Request object.You may also create a Request instance by passing a model as the constructors only param.
import { Request } from '@vuex-orm/plugin-axios' const request = new Request(User)
# Instance Properties
# model
Type:
typeof ModelThe model class that is attached to the Request instance.
# axios
Type:
AxiosInstanceThe axios instance that will be used to perform the request.
# Instance Methods
# get
get(url: string, config: Config = {}): Promise<Response>Performs a
GETrequest. It takes the same arguments as the axiosgetmethod.
# post
post(url: string, data: any = {}, config: Config = {}): Promise<Response>Performs a
POSTrequest. It takes the same arguments as the axiospostmethod.
# put
put(url: string, data: any = {}, config: Config = {}): Promise<Response>Performs a
PUTrequest. It takes the same arguments as the axiosputmethod.
# patch
patch(url: string, data: any = {}, config: Config = {}): Promise<Response>Performs a
PATCHrequest. It takes the same arguments as the axiospatchmethod.
# delete
delete(url: string, config: Config = {}): Promise<Response>Performs a
DELETErequest. It takes the same arguments as the axiosdeletemethod.
# request
request(config: Config): Promise<Response>Performs a request with the given config options. Requests will default to
GETif themethodoption is not specified.All request aliases call this method by merging the relevant configs. You may use this method if you are more familiar with using the axios API in favour of alias methods.