EflClient
submitLeadVerificationResult
Submits lead verification result for the given transaction.
submitLeadVerificationResult() sends the result of a lead verification back to the EFL API.
It wraps CustomerApiClient::leadVerificationResult().
All methods on EflClient may throw:
ApiException– when the EFL API returns an error response.HttpException– when the HTTP transport fails.
Method signature
public function submitLeadVerificationResult(
string $transactionId,
VerificationResult $result,
string $bearerToken
): void
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
transactionId | string | Yes | Identifier of the transaction. |
result | VerificationResult | Yes | Verification result data to be submitted. |
bearerToken | string | Yes | Bearer token. |
Return value
- Type:
void– failures are reported via exceptions.