Specifying or Retrieving the AS2 ID of File Sender (AS2ID)

Available in EFT Server 6.1 and later.

The ICIAS2SendActionParams::AS2ID property allows you to specify or retrieve the AS2 ID of the file sender.

HRESULT AS2ID([out, retval] BSTR* pVal);

HRESULT AS2ID([in] BSTR newVal);

Example (VBScript):

Retrieving:

MsgBox "Send message as " & AS2SendParams.AS2ID & " AS2 identifier"

Specifying:

AS2SendParams.AS2ID = "EFT Server : User1"