Module Values_1.ResponseExtractionMappingSource

Configuration that defines how to extract values from HTTP response content or headers for use in subsequent requests or parameter mapping.

Sourcetype nonrec t = {
  1. contentPath : JsonPathString.t option;
    (*

    A JSON path expression that specifies how to extract a value from the response body content.

    *)
  2. headerKey : Values_0.ConnectorPropertyKey.t option;
    (*

    The name of an HTTP response header from which to extract the value.

    *)
}
Sourceval make : ?contentPath:??? -> ?headerKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JsonPathString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t