EflClient
sendItnViaCustomerEndpoint
Sends ITN payload via the Customer ITN endpoint.
sendItnViaCustomerEndpoint() sends an ITN payload using the /Customer/ITN endpoint instead of the testing endpoint.
It wraps CustomerApiClient::postItn() and is typically used in more realistic integration scenarios.
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 sendItnViaCustomerEndpoint(string $transactionsPayload): void
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
transactionsPayload | string | Yes | Raw transactions payload, typically XML. |
Return value
- Type:
void– failures are reported via exceptions.