v1

latestOpenAPI 3.0.2EULA2026-07-143221521.2 MB
Customers actions

Customer's credentials verification

Verification of a customer account credentials.

Validates a customer's login credentials (email address and password) against their CareCloud account. Returns the customer ID if the credentials are valid. Use this endpoint to authenticate a customer before granting access to a service or application.

⚠️ Action method for verification credentials is available only in the Enterprise interface.

post/customers/actions/verify-credentials

Request body

login_type'card' | 'email' required

The unique ID of the login type (available: card, email).

login_valuestring required

Value of the login for customer interface API.

passwordstring password required

Password of the customer.

Example request

{
  "login_type": "email",
  "login_value": "happy_customer@cortex.cz",
  "password": "password123_is_not_a_good_idea"
}

Response

OK

Example response

{
  "data": {
    "customer_id": "8ea6abece4cd0a4ded0a29f093"
  }
}