Add a new contact person to an existing customer account, creating a new system record and returning a unique contact ID for permission management.
/teams contact_id → data.contact_id Accept Example Content-Type Example address1 string required
· Example: city string required
· Example: country string required
· Example: firstname string required
· Example: Anna lastname string required
· Example: Svensson password string required
· Example: YOUR_PASSWORD phonenumber string required
· Example: postcode string required
· Example: type string required
· Example: contact data object required data.call string
· Example: addClientContact data.contact_id integer
· Example: 14087 data.error string
· Example: Failed to add contact HTTP status title (e.g. 'Bad Request').
data.server_time integer
· Example: 1769765937 data.success boolean
· Example: true True for successful responses.
requestId string required
· Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba Unique request identifier (UUID).
success boolean required
· Example: true True for successful responses.
timestamp string required
· Example: 2026-02-10T00:00:00.000Z ISO 8601 timestamp (UTC).
https://cloud.hostup.se/api/teams curl -X POST "https://cloud.hostup.se/api/teams" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"type": "contact",
"firstname": "Anna",
"lastname": "Svensson",
"email": "[email protected]",
"password": "YOUR_PASSWORD",
"phonenumber": "",
"address1": "",
"city": "",
"country": "",
"postcode": ""
}' {
"success": true,
"timestamp": "2026-02-10T00:00:00.000Z",
"requestId": "2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba",
"data": {
"success": true,
"contact_id": 14087,
"call": "addClientContact",
"server_time": 1769765937
}
} {
"type": "contact",
"firstname": "Anna",
"lastname": "Svensson",
"email": "[email protected]",
"password": "YOUR_PASSWORD",
"phonenumber": "",
"address1": "",
"city": "",
"country": "",
"postcode": ""
}