IPlatformHttpResponse

JFrog Platform Administration Documentation

Content Type
Administration / Platform
ft:sourceType
Paligo
interface IPlatformHttpResponse {
   /**
    * HTTP status
    */
   status: number;
   /**
    * Response headers
    */
   headers: Record<string, string>;
   /**
    * Parsed response body
    */
   data: any;
}