system.net.httpPost(url, [contentType], [postData], [connectTimeout], [readTimeout], [username], [password], headerValues], [bypassCertValidation], [throwOnError])
String url - The URL to post to.
String contentType - The MIME type to use in the HTTP "Content-type" header. [optional]
String postData - The raw data to post via HTTP. [optional]
Integer connectTimeout - The timeout for connecting to the url. In milliseconds. Default is 10,000. [optional]
Integer readTimeout - The read timeout for the get operation. In milliseconds. Default is 60,000. [optional]
String username - If specified, the call will attempt to authenticate with basic HTTP authentication. [optional]
String password - The password used for basic http authentication, if the username parameter is also present. [optional]
Dictionary[String, Integer] headerValues - A dictionary of name/value pairs that will be set in the http header. [optional]
Boolean bypassCertValidation - If the target address is an HTTPS address, and this parameter is True, the system will bypass all SSL certificate validation. This is not recommended, though is sometimes necessary for self-signed certificates. [optional]
Boolean throwOnError - Set to false if you wish to get the error body rather than a Python exception if the POST request returns an error code (non-200 responsive). Default is True. [optional]
String - The content returned for the POST operation.
Gateway, Vision Client, Perspective Session