TaliwareTaliware Developer

CL2C Swagger reference

Choose an endpoint, enter its required values, and inspect or send a real API request.

OpenAPI 3.0.3 · Swagger format

View or download the OpenAPI specification

21 endpoints
Complete endpoint URL
posthttps://developer.taliware.com/api/v1/cl2c/user/bulk

Bulk invite users to the organization

Invite up to 100 users in a single request. Each entry is processed independently. Returns HTTP 207 (Multi-Status) with per-user results. Duplicate emails within the request are deduplicated automatically. Emails already a member or with a pending invitation are reported as skipped, not failed.

POST
/cl2c/user/bulk
x-api-key<token>

In: header

usersarray<BulkUserEntry>
Items1 <= items <= 100

Response Body

curl -X POST "https://developer.taliware.com/api/v1/cl2c/user/bulk" \  -H "Content-Type: application/json" \  -d '{    "users": [      {        "email": "alice@example.com"      },      {        "email": "bob@example.com",        "phone": "+1 555 000 0001"      }    ]  }'
{
  "data": {
    "results": [
      {
        "email": "user@example.com",
        "status": "invited",
        "reason": "string",
        "id": "string"
      }
    ],
    "summary": {
      "total": 0,
      "invited": 0,
      "skipped": 0,
      "failed": 0
    }
  }
}
{
  "error": "string",
  "details": [
    "string"
  ]
}
{
  "error": "string",
  "details": [
    "string"
  ]
}
{
  "error": "string",
  "details": [
    "string"
  ]
}
{
  "error": "string",
  "details": [
    "string"
  ]
}
CL2C API Reference | Taliware Developer