Skip to main content
PUT
/
team
Update team settings
curl --request PUT \
  --url https://api.lettermint.co/v1/team \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "plan": "free",
    "tier": 300,
    "verified_at": "2023-11-07T05:31:56Z",
    "features": [
      "<string>"
    ],
    "addons": [
      {
        "type": "<string>",
        "expires_at": "<string>"
      }
    ],
    "created_at": "2023-11-07T05:31:56Z",
    "domains_count": 123,
    "projects_count": 123,
    "members_count": 123
  },
  "message": "Team settings updated successfully."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

UpdateTeamData

name
string | null
Maximum length: 255

Response

data
object
required
message
enum<string>
required
Available options:
Team settings updated successfully.