Extensions Reference: HTTPExchange HTTPExchange id requestUrl requestBody requestHeaders requestHeaderString responseHTTPVersion responseStatusCode responseStatusLine responseStatusString responseHeaders responseHeaderString responseBody responseTime downloadTime date getRequestHeaderByName getResponseHeaderByName Extensions Reference: HTTPExchange¶ API Reference HTTPExchange Request Context HTTPExchangeHTTPExchange¶ The HTTPExchange object represents the HTTP request sent to the server and the server response. While Requests are what you compose, HTTPExchanges are the result of the Send action in Paw. All properties are Read-only. idid¶ The unique identifier (UUID) requestUrlrequestUrl¶ The URL of the request as it has been sent. requestBodyrequestBody¶ The URL of the request as it has been sent. requestHeadersrequestHeaders¶ The headers of the request as it has been sent, as a dictionary. requestHeaderStringrequestHeaderString¶ The header string of the request as it has been sent, as a string of the HTTP headers (including the Header Line). responseHTTPVersionresponseHTTPVersion¶ The HTTP version of the response ("HTTP/1.1" or "HTTP/1.0"). responseStatusCoderesponseStatusCode¶ The status code of the response, as a number (e.g. 200 or 404). responseStatusLineresponseStatusLine¶ The full status line (e.g. "HTTP/1.1 404 Not Found"). responseStatusStringresponseStatusString¶ The status string (e.g. "Not Found"). responseHeadersresponseHeaders¶ The headers of the response as a dictionary. responseHeaderStringresponseHeaderString¶ The header string of the response, as a string of the HTTP headers (including the Status Line). responseBodyresponseBody¶ The body of the response, as a string, decoded according to the Content-Type (charset) header. responseTimeresponseTime¶ The total time the response took, until all the response headers have been received. downloadTimedownloadTime¶ The total time the response took, until the last downloaded byte of body. datedate¶ The date at which the exchange has been created. getRequestHeaderByNamegetRequestHeaderByName¶ Argument: headerName: string: NoneThe header name requested Returns: None: stringReturns the given request header by its name or null. getResponseHeaderByNamegetResponseHeaderByName¶ Argument: headerName: string: NoneThe header name requested Returns: None: stringReturns the given response header by its name or null.