EflClient
sendItn
Sends an ITN notification payload to the EFL sandbox testing endpoint.
sendItn() sends an ITN payload to the sandbox testing endpoint.
It wraps TestingApiClient::sendItn() and is typically used only in non-production environments.
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 sendItn(array $transactionListFlattened, string $bearerToken): void
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
transactionListFlattened | array<string, mixed> | Yes | Associative array with flattened transaction list payload. |
bearerToken | string | Yes | Bearer token for the sandbox testing endpoint. |
Return value
- Type:
void– failures are reported via exceptions.