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

NameDescriptionTypeAdditional 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

TeamUsersOrder
NameDescriptionTypeAdditional 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": [
    "3c3f45a8-4a17-4019-a115-18cc96b9dc24",
    "9c1779bd-e288-4e2d-9bd5-4c7216466e2d"
  ]
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.