Appearance
invokeGet
Definition
Invoke custom GET request to shopware API. Mostly for plugins usage. You can skip domain and pass only endpoint ex. /api/my/endpoint
Signature
ts
export function invokeGet<T>(
{ address }: { address: string },
contextInstance: ShopwareApiInstance = defaultInstance
): Promise<AxiosResponse<T>>
Parameters
Name | Type | Description |
---|---|---|
{ address } | { address: string } | endpoint address |
contextInstance | ShopwareApiInstance | instance of the api client (by default it's an Axios instance) |
Return type
ts
Promise<AxiosResponse<T>>
Usage example
WARNING
Example is generated automatically. Sometimes it's required to be adjusted to your needs.