Skip to main content
POST
/
team
/
website
Update Team Website
curl --request POST \
  --url https://mcp.closedloop.sh/team/website \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "website": "https://example.com"
}'
{
  "success": true,
  "data": {
    "website": "https://example.com",
    "updated_at": "2025-01-27T10:30:00Z"
  }
}

Authorizations

Authorization
string
header
required

API key for authentication (format: Bearer YOUR_API_KEY)

Body

application/json
website
string<uri>
required

The team's website URL

Example:

"https://example.com"

Response

Team website updated successfully

success
boolean
Example:

true

data
object