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": [ "e4474df0-e255-4fc8-b6cd-af65349a808a", "18fe6e68-1a67-4d1d-85fe-3db5d0d57322" ] }
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. |