v1
latestOpenAPI 3.0.02026-07-2466275257.1 KBteam
Update a team
This endpoint updates the details of a team specified by the team_id. It allows modification of various team attributes such as the team name, ompany details, phone number, website URL, address, and more.
patch/v2/teams
Request body
Example request
{
"team": {
"id": "team_123XYZ",
"name": "Alpha Team",
"namespaceId": "namespace_987ABC",
"companyName": "Awesome Corp",
"companyWebsite": "https://www.awesomecorp.com",
"companyPhone": "+1-800-555-0123",
"companyAddress": {
"addressLine": "123 Main St",
"postcode": "12345"
},
"businessIdentifier": "biz_456XYZ",
"reviewerEmail": "reviewer@example.com",
"logoId": "biz_456XYZ",
"sellerId": "seller_789LMN",
"modifyTime": "2024-09-01T12:34:56Z",
"onBehalfOf": "Sponsor Corp"
}
}Response
The updated team.
Example response
{
"team": {
"id": "team_123XYZ",
"name": "Alpha Team",
"namespaceId": "namespace_987ABC",
"companyName": "Awesome Corp",
"companyWebsite": "https://www.awesomecorp.com",
"companyPhone": "+1-800-555-0123",
"companyAddress": {
"addressLine": "123 Main St",
"postcode": "12345"
},
"businessIdentifier": "biz_456XYZ",
"reviewerEmail": "reviewer@example.com",
"logoId": "biz_456XYZ",
"sellerId": "seller_789LMN",
"modifyTime": "2024-09-01T12:34:56Z",
"onBehalfOf": "Sponsor Corp"
}
}