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": "d2a6c8cf-b483-47e0-9982-2b2724df2a2d",
  "sales_organization_id": "3baae1b1-db8c-4f3a-91f5-b1b9e2706acb",
  "name": "sample string 3",
  "description": "sample string 4",
  "modified_dateutc": "2026-06-16T22:32:05.7893545+00:00"
}

application/xml, text/xml

Sample:
<user_team xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <description>sample string 4</description>
  <id>d2a6c8cf-b483-47e0-9982-2b2724df2a2d</id>
  <modified_dateutc>2026-06-16T22:32:05.789Z</modified_dateutc>
  <name>sample string 3</name>
  <sales_organization_id>3baae1b1-db8c-4f3a-91f5-b1b9e2706acb</sales_organization_id>
</user_team>