PUT api/v1/Teams/{id}/Users/Order?suppressResponseCodes={suppressResponseCodes}&APIKey={APIKey}&APIToken={APIToken}
Will change the order of the session team members to whatever the order is of the list provided.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The team ID |
globally unique identifier |
Required |
suppressResponseCodes |
Some applications do wonky things if error codes are used. Use this to force 200s to always return. |
boolean |
None. |
APIKey |
This is your unique key that identifies you as the developer of this app. Required for all calls. |
string |
None. |
APIToken |
This is the user's session token generated when you authenticate the user |
string |
None. |
Body Parameters
Update object
TeamUsersOrderName | Description | Type | Additional information |
---|---|---|---|
Users |
Whatever order these users are in is the new order for the session team |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "Users": [ "2f117bd0-f554-4bd0-98cb-3ee6cf5df275", "d5722ec1-8a7d-4412-83a4-24e8dd4546e5" ] }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | 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. |