You are here: Start » FIL.NET » FIS.Http_SendRequest_POST_JSON Method
FIS.Http_SendRequest_POST_JSON Method
Sends a POST request in JSON format to the server and receives a text answer.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void Http_SendRequest_POST_JSON ( string inUrl, string inJsonData, int inTimeout, INullable<string> outAnswer, out int outResponseCode )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inUrl | string | URL of request. | ||
![]() | inJsonData | string | Request JSON to send. | ||
![]() | inTimeout | int | <0, INF> | 60 | Request timeout in seconds. Default value: 60. |
![]() | outAnswer | FilNet.INullable<string> | Answer text if provided in UTF-8 encoding. This parameter cannot be null. | ||
![]() | outResponseCode | int | Answer code. Typically 200 for OK. |