Retrieves the user_team with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

user_team
NameDescriptionTypeAdditional information
id

globally unique identifier
sales_organization_id

globally unique identifier
name

string
description

string
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "fec65d5d-ccd2-48f1-af3d-5c28f443e409",
  "sales_organization_id": "be861adc-c075-400d-bf7d-79bd0b95362c",
  "name": "sample string 3",
  "description": "sample string 4",
  "modified_dateutc": "2026-03-07T13:16:44.5929666+00:00"
}

application/xml, text/xml

Sample:
<user_team xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <description>sample string 4</description>
  <id>fec65d5d-ccd2-48f1-af3d-5c28f443e409</id>
  <modified_dateutc>2026-03-07T13:16:44.592Z</modified_dateutc>
  <name>sample string 3</name>
  <sales_organization_id>be861adc-c075-400d-bf7d-79bd0b95362c</sales_organization_id>
</user_team>