Remove a contact from your account

Permanently remove a contact associated with your account. This is useful if a contact is no longer relevant or needs access. The endpoint returns a unique ID for tracking the action in the system.

Query Parameters

type string required
id string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
400
error string
message string
code string
timestamp string
requestId string
503
error string
message string
code string
timestamp string
requestId string
DELETE https://cloud.hostup.se/api/teams
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/teams?type=string&id=string" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "call": "string",
    "server_time": 0,
    "info": [
      "string"
    ]
  }
}