/AWS1/IF_CNP=>CANCELPARTICIPANTAUTHNTCTN()
¶
About CancelParticipantAuthentication¶
Cancels the authentication session. The opted out branch of the Authenticate Customer flow block will be taken.
The current supported channel is chat. This API is not supported for Apple Messages for Business, WhatsApp, or SMS chats.
ConnectionToken
is used for invoking this API instead of
ParticipantToken
.
The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_sessionid
TYPE /AWS1/CNPSESSIONID
/AWS1/CNPSESSIONID
¶
The
sessionId
provided in theauthenticationInitiated
event.
iv_connectiontoken
TYPE /AWS1/CNPPARTICIPANTTOKEN
/AWS1/CNPPARTICIPANTTOKEN
¶
The authentication token associated with the participant's connection.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_cnpcancparticipanta01
/AWS1/CL_CNPCANCPARTICIPANTA01
¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->/aws1/if_cnp~cancelparticipantauthntctn(
iv_connectiontoken = |string|
iv_sessionid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.