You are here: Start » FIL.NET » Invoke.Http_SendRequest_POST_JSON

Invoke.Http_SendRequest_POST_JSON

Sends a POST request in JSON format to the server and receives a text answer.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void Http_SendRequest_POST_JSON
(
	string inUrl,
	List<string> inHeaders,
	List<string> inHeadersData,
	string inJsonData,
	int inTimeout,
	bool inAllowUntrusted,
	Optional<string> inCaCertFile,
	Conditional<string> outAnswer,
	out int outResponseCode
)

Parameters

Name Type Range Default Description
inUrlstringURL of request.
inHeadersSystem.Collections.Generic.List<string>Request headers to send. They will be automatically encoded.
inHeadersDataSystem.Collections.Generic.List<string>Request headers to send. They will be automatically encoded.
inJsonDatastringRequest JSON to send.
inTimeoutint<0, INF>60Request timeout in seconds. Default value: 60.
inAllowUntrustedboolFalseWhether or not to allow untrusted SSL certificates. Default value: False.
inCaCertFileFtl.Optional<string>File holding one or more certificates to verify the peer with. Default value: ftl::NIL.
outAnswerFtl.Conditional<string>Answer text if provided in UTF-8 encoding.
outResponseCodeintAnswer code. Typically 200 for OK.

See also