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": "40075afb-0be7-496d-bf8d-fdca2f1b0aab",
  "sales_organization_id": "74325103-c936-4e04-95cf-a285a673931b",
  "name": "sample string 3",
  "description": "sample string 4",
  "modified_dateutc": "2026-01-12T00:25:21.2660282+00:00"
}

application/xml, text/xml

Sample:
<user_team xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <description>sample string 4</description>
  <id>40075afb-0be7-496d-bf8d-fdca2f1b0aab</id>
  <modified_dateutc>2026-01-12T00:25:21.266Z</modified_dateutc>
  <name>sample string 3</name>
  <sales_organization_id>74325103-c936-4e04-95cf-a285a673931b</sales_organization_id>
</user_team>