POST v1/users/GetAuthTicket
Request Information
URI Parameters
None.
Body Parameters
SimpleLoginInModel| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
Required |
|
| password | string |
Required |
Request Formats
application/json, text/json, application/vnd.team.do+json
Sample:
{
"username": "sample string 1",
"password": "sample string 2"
}
text/html
Sample:
{"username":"sample string 1","password":"sample string 2"}
Response Information
Resource Description
AuthentificationOutModel| Name | Description | Type | Additional information |
|---|---|---|---|
| authticket | string |
None. |
|
| cguid | globally unique identifier |
None. |
|
| isNewUser | boolean |
None. |
Response Formats
application/json, text/json, application/vnd.team.do+json
Sample:
{
"authticket": "sample string 1",
"cguid": "a2712473-b7c7-4263-9270-108a28cbcc2b",
"isNewUser": true
}
text/html
Sample:
{"authticket":"sample string 1","cguid":"a2712473-b7c7-4263-9270-108a28cbcc2b","isNewUser":true}