EflClient
submitCustomerStatements
Submits additional customer statements for the given transaction.
submitCustomerStatements() sends additional statements/consents for a transaction.
It wraps CustomerApiClient::postCustomerStatements().
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 submitCustomerStatements(
string $transactionId,
array $statements,
string $bearerToken
): void
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
transactionId | string | Yes | Identifier of the transaction. |
statements | CustomerDataStatement[] (CustomerDataStatement) | Yes | List of statements/consents to be submitted. |
bearerToken | string | Yes | Bearer token. |
Return value
- Type:
void– failures are reported via exceptions.