Retrieves the user team with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The user team id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the user team, or 404 Not Found if it doesn't exist.

user_team
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
sales_organization_id

Foreign key of the sales organization this team belongs to.

globally unique identifier
name

Name of this team.

string
description

Free-text description of this team.

string
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "c30614a1-9704-4f03-bc1e-2b562c53cd74",
  "sales_organization_id": "6e923c98-234a-4449-bcbe-5d3e81864545",
  "name": "sample string 3",
  "description": "sample string 4",
  "modified_dateutc": "2026-09-16T10:15:06.3274173+00:00"
}

application/xml, text/xml

Sample:
<user_team xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <description>sample string 4</description>
  <id>c30614a1-9704-4f03-bc1e-2b562c53cd74</id>
  <modified_dateutc>2026-09-16T10:15:06.327Z</modified_dateutc>
  <name>sample string 3</name>
  <sales_organization_id>6e923c98-234a-4449-bcbe-5d3e81864545</sales_organization_id>
</user_team>