POST api/Cert/Request
POST Cert with JWTAuthorize. Warning : any Blank value will post as null.
Request Information
URI Parameters
None.
Body Parameters
TCert| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| xT | Collection of xTable |
None. |
|
| Func | string |
None. |
|
| AcctNo | integer |
None. |
|
| Descp | string |
None. |
|
| UserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"xT": [
{
"Key": "sample string 1",
"Value": "sample string 2",
"Comment": "sample string 3"
},
{
"Key": "sample string 1",
"Value": "sample string 2",
"Comment": "sample string 3"
}
],
"Func": "sample string 2",
"AcctNo": 3,
"Descp": "sample string 4",
"UserId": 5
}
application/xml, text/xml
Sample:
<SQLFunction.TCert xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTapi2.AppsDAL">
<AcctNo>3</AcctNo>
<Descp>sample string 4</Descp>
<Func>sample string 2</Func>
<UserId>5</UserId>
<token>sample string 1</token>
<xT>
<SQLFunction.xTable>
<Comment>sample string 3</Comment>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</SQLFunction.xTable>
<SQLFunction.xTable>
<Comment>sample string 3</Comment>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</SQLFunction.xTable>
</xT>
</SQLFunction.TCert>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |