Update contact information for an account or service

Update contact details such as name and email for a specific service or account. This is useful when you need to correct inaccurate information or update contacts for your services. The endpoint returns a unique ID that may be needed for subsequent operations.

Headers

Accept Example
Content-Type Example

Body

required
application/json
type string required
id string required
firstname string required
lastname string required
email string required
password string required

Responses

200
success boolean
timestamp string
requestId string
data object
503
error string
message string
code string
timestamp string
requestId string
PUT https://cloud.hostup.se/api/teams
For AI assistants
cURL
curl -X PUT "https://cloud.hostup.se/api/teams" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "string",
    "id": "string",
    "firstname": "string",
    "lastname": "string",
    "email": "string",
    "password": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "error": "string"
  }
}
Request Body
{
  "type": "string",
  "id": "string",
  "firstname": "string",
  "lastname": "string",
  "email": "string",
  "password": "string"
}