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": [ "b90caa91-0a0a-456a-b0d2-9b2ff0823203", "de42f297-2b5b-45c1-942d-64810c539a65" ] }
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. |