Delete Person Phone

delete/v1/phones/{phone_id}

Soft-deletes a phone row in the caller's workspace. Side effect: stamps deleted_at so the phone drops out of reads. Returns no body.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
phone_idstring <uuid>YesPublic UUID of the phone.e.g. f7a8b9c0-1d2e-43f4-95a6-b7c8d9e0f1a2

Request

cURL
curl -X DELETE https://api.wellapp.ai/v1/phones/{phone_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

204The phone was soft-deleted.

401Unauthorized

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

403Forbidden

{
  "code": "FORBIDDEN",
  "status": 403,
  "title": "Forbidden",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404Not Found

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}