POST api/Authentication?lang={lang}&json={json}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
lang | string |
Required |
|
json | string |
Required |
Body Parameters
None.
Response Information
Resource Description
AuthConnectOtherSiteModelName | Description | Type | Additional information |
---|---|---|---|
time | string |
None. |
|
fromProject | string |
None. |
|
hash | string |
None. |
|
success | boolean |
None. |
|
msg | MsgModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "time": "sample string 1", "fromProject": "sample string 2", "hash": "sample string 3", "success": true, "msg": { "code": 1, "text": "sample string 2", "topic": "sample string 3" } }
application/xml, text/xml
Sample:
<AuthConnectOtherSiteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TUFTManagement.Models"> <fromProject>sample string 2</fromProject> <hash>sample string 3</hash> <msg> <code>1</code> <text>sample string 2</text> <topic>sample string 3</topic> </msg> <success>true</success> <time>sample string 1</time> </AuthConnectOtherSiteModel>