POST v1/users/Signup
Request Information
URI Parameters
None.
Body Parameters
SimpleSignupInModel| Name | Description | Type | Additional information |
|---|---|---|---|
| password | string |
Required Min length: 7 |
|
| username | string |
Required |
|
| fullName | string |
Required |
|
| sourceId | integer |
None. |
|
| landingId | integer |
None. |
|
| fieldId | integer |
None. |
|
| langId | integer |
None. |
Request Formats
application/json, text/json, application/vnd.team.do+json
Sample:
{
"password": "sample string 1",
"username": "sample string 2",
"fullName": "sample string 3",
"sourceId": 4,
"landingId": 5,
"fieldId": 6,
"langId": 7
}
text/html
Sample:
{"password":"sample string 1","username":"sample string 2","fullName":"sample string 3","sourceId":4,"landingId":5,"fieldId":6,"langId":7}
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": "c62fa556-f29d-40c3-bab9-7cab0deac7d8",
"isNewUser": true
}
text/html
Sample:
{"authticket":"sample string 1","cguid":"c62fa556-f29d-40c3-bab9-7cab0deac7d8","isNewUser":true}