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
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"
}
}