+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "BackendSrvRequest" keywords = ["grafana","documentation","sdk","@grafana/runtime"] type = "docs" +++ ## BackendSrvRequest type ### BackendSrvRequest type Used to initiate a remote call via the [BackendSrv](./runtime/backendsrv.md) Signature ```typescript export declare type BackendSrvRequest = { url: string; retry?: number; headers?: any; method?: string; showSuccessAlert?: boolean; requestId?: string; [key: string]: any; }; ``` Import ```typescript import { BackendSrvRequest } from '@grafana/runtime'; ```