We announced the upcoming end-of-support for AWS SDK for JavaScript v2.
We recommend that you migrate to AWS SDK for JavaScript v3. For dates, additional details, and information on how to migrate, please refer to the linked announcement.

Class: AWS.ConnectParticipant

Inherits:
AWS.Service show all
Identifier:
connectparticipant
API Version:
2018-09-07
Defined in:
(unknown)

Overview

Constructs a service interface object. Each API operation is exposed as a function on service.

Service Description

Amazon Connect is an easy-to-use omnichannel cloud contact center service that enables companies of any size to deliver superior customer service at a lower cost. Amazon Connect communications capabilities make it easy for companies to deliver personalized interactions across communication channels, including chat.

Use the Amazon Connect Participant Service to manage participants (for example, agents, customers, and managers listening in), and to send messages and events within a chat contact. The APIs in the service enable the following: sending chat messages, attachment sharing, managing a participant's connection state and message events, and retrieving chat transcripts.

Sending a Request Using ConnectParticipant

var connectparticipant = new AWS.ConnectParticipant();
connectparticipant.completeAttachmentUpload(params, function (err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Locking the API Version

In order to ensure that the ConnectParticipant object uses this specific API, you can construct the object by passing the apiVersion option to the constructor:

var connectparticipant = new AWS.ConnectParticipant({apiVersion: '2018-09-07'});

You can also set the API version globally in AWS.config.apiVersions using the connectparticipant service identifier:

AWS.config.apiVersions = {
  connectparticipant: '2018-09-07',
  // other service API versions
};

var connectparticipant = new AWS.ConnectParticipant();

Version:

  • 2018-09-07

Constructor Summary collapse

Property Summary collapse

Properties inherited from AWS.Service

apiVersions

Method Summary collapse

Methods inherited from AWS.Service

makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService

Constructor Details

new AWS.ConnectParticipant(options = {}) ⇒ Object

Constructs a service object. This object has one method for each API operation.

Examples:

Constructing a ConnectParticipant object

var connectparticipant = new AWS.ConnectParticipant({apiVersion: '2018-09-07'});

Options Hash (options):

  • params (map)

    An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.

  • endpoint (String|AWS.Endpoint)

    The endpoint URI to send requests to. The default endpoint is built from the configured region. The endpoint should be a string like 'https://{service}.{region}.amazonaws.com' or an Endpoint object.

  • accessKeyId (String)

    your AWS access key ID.

  • secretAccessKey (String)

    your AWS secret access key.

  • sessionToken (AWS.Credentials)

    the optional AWS session token to sign requests with.

  • credentials (AWS.Credentials)

    the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.

  • credentialProvider (AWS.CredentialProviderChain)

    the provider chain used to resolve credentials if no static credentials property is set.

  • region (String)

    the region to send service requests to. See AWS.ConnectParticipant.region for more information.

  • maxRetries (Integer)

    the maximum amount of retries to attempt with a request. See AWS.ConnectParticipant.maxRetries for more information.

  • maxRedirects (Integer)

    the maximum amount of redirects to follow with a request. See AWS.ConnectParticipant.maxRedirects for more information.

  • sslEnabled (Boolean)

    whether to enable SSL for requests.

  • paramValidation (Boolean|map)

    whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:

    • min [Boolean] — Validates that a value meets the min constraint. This is enabled by default when paramValidation is set to true.
    • max [Boolean] — Validates that a value meets the max constraint.
    • pattern [Boolean] — Validates that a string value matches a regular expression.
    • enum [Boolean] — Validates that a string value matches one of the allowable enum values.
  • computeChecksums (Boolean)

    whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)

  • convertResponseTypes (Boolean)

    whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to true.

  • correctClockSkew (Boolean)

    whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to false.

  • s3ForcePathStyle (Boolean)

    whether to force path style URLs for S3 objects.

  • s3BucketEndpoint (Boolean)

    whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an endpoint to be provided explicitly to the service constructor.

  • s3DisableBodySigning (Boolean)

    whether S3 body signing should be disabled when using signature version v4. Body signing can only be disabled when using https. Defaults to true.

  • s3UsEast1RegionalEndpoint ('legacy'|'regional')

    when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to legacy

  • s3UseArnRegion (Boolean)

    whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to true

  • retryDelayOptions (map)

    A set of options to configure the retry delay on retryable errors. Currently supported options are:

    • base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
    • customBackoff [function] — A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds. If the result is a non-zero negative value, no further retry attempts will be made. The base option will be ignored if this option is supplied. The function is only called for retryable errors.
  • httpOptions (map)

    A set of options to pass to the low-level HTTP request. Currently supported options are:

    • proxy [String] — the URL to proxy requests through
    • agent [http.Agent, https.Agent] — the Agent object to perform HTTP requests with. Used for connection pooling. Defaults to the global agent (http.globalAgent) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment.
    • connectTimeout [Integer] — Sets the socket to timeout after failing to establish a connection with the server after connectTimeout milliseconds. This timeout has no effect once a socket connection has been established.
    • timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
    • xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
    • xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
  • apiVersion (String, Date)

    a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by apiVersions). Specify 'latest' to use the latest possible version.

  • apiVersions (map<String, String|Date>)

    a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.

  • logger (#write, #log)

    an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests

  • systemClockOffset (Number)

    an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global AWS.config object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds.

  • signatureVersion (String)

    the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.

  • signatureCache (Boolean)

    whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to true.

  • dynamoDbCrc32 (Boolean)

    whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default: true.

  • useAccelerateEndpoint (Boolean)

    Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default: false.

  • clientSideMonitoring (Boolean)

    whether to collect and publish this client's performance metrics of all its API requests.

  • endpointDiscoveryEnabled (Boolean|undefined)

    whether to call operations with endpoints given by service dynamically. Setting this

  • endpointCacheSize (Number)

    the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000

  • hostPrefixEnabled (Boolean)

    whether to marshal request parameters to the prefix of hostname. Defaults to true.

  • stsRegionalEndpoints ('legacy'|'regional')

    whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.

  • useFipsEndpoint (Boolean)

    Enables FIPS compatible endpoints. Defaults to false.

  • useDualstackEndpoint (Boolean)

    Enables IPv6 dualstack endpoint. Defaults to false.

Property Details

endpointAWS.Endpoint (readwrite)

Returns an Endpoint object representing the endpoint URL for service requests.

Returns:

  • (AWS.Endpoint)

    an Endpoint object representing the endpoint URL for service requests.

Method Details

completeAttachmentUpload(params = {}, callback) ⇒ AWS.Request

Allows you to confirm that the attachment has been uploaded using the pre-signed URL provided in StartAttachmentUpload API. A conflict exception is thrown when an attachment with that identifier is already being uploaded.

Note: ConnectionToken is used for invoking this API instead of ParticipantToken.

The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Service Reference:

Examples:

Calling the completeAttachmentUpload operation

var params = {
  AttachmentIds: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  ClientToken: 'STRING_VALUE', /* required */
  ConnectionToken: 'STRING_VALUE' /* required */
};
connectparticipant.completeAttachmentUpload(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • AttachmentIds — (Array<String>)

      A list of unique identifiers for the attachments.

    • ClientToken — (String)

      A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.

      If a token is not provided, the SDK will use a version 4 UUID.
    • ConnectionToken — (String)

      The authentication token associated with the participant's connection.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createParticipantConnection(params = {}, callback) ⇒ AWS.Request

Creates the participant's connection.

Note: ParticipantToken is used for invoking this API instead of ConnectionToken.

The participant token is valid for the lifetime of the participant – until they are part of a contact.

The response URL for WEBSOCKET Type has a connect expiry timeout of 100s. Clients must manually connect to the returned websocket URL and subscribe to the desired topic.

For chat, you need to publish the following on the established websocket connection:

{"topic":"aws/subscribe","content":{"topics":["aws/chat"]}}

Upon websocket URL expiry, as specified in the response ConnectionExpiry parameter, clients need to call this API again to obtain a new websocket URL and perform the same steps as before.

Message streaming support: This API can also be used together with the StartContactStreaming API to create a participant connection for chat contacts that are not using a websocket. For more information about message streaming, Enable real-time chat message streaming in the Amazon Connect Administrator Guide.

Feature specifications: For information about feature specifications, such as the allowed number of open websocket connections per participant, see Feature specifications in the Amazon Connect Administrator Guide.

Note: The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Service Reference:

Examples:

Calling the createParticipantConnection operation

var params = {
  ParticipantToken: 'STRING_VALUE', /* required */
  ConnectParticipant: true || false,
  Type: [
    WEBSOCKET | CONNECTION_CREDENTIALS,
    /* more items */
  ]
};
connectparticipant.createParticipantConnection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Type — (Array<String>)

      Type of connection information required. If you need CONNECTION_CREDENTIALS along with marking participant as connected, pass CONNECTION_CREDENTIALS in Type.

    • ParticipantToken — (String)

      This is a header parameter.

      The ParticipantToken as obtained from StartChatContact API response.

    • ConnectParticipant — (Boolean)

      Amazon Connect Participant is used to mark the participant as connected for customer participant in message streaming, as well as for agent or manager participant in non-streaming chats.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Websocket — (map)

        Creates the participant's websocket connection.

        • Url — (String)

          The URL of the websocket.

        • ConnectionExpiry — (String)

          The URL expiration timestamp in ISO date format.

          It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

      • ConnectionCredentials — (map)

        Creates the participant's connection credentials. The authentication token associated with the participant's connection.

        • ConnectionToken — (String)

          The connection token.

        • Expiry — (String)

          The expiration of the token.

          It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeView(params = {}, callback) ⇒ AWS.Request

Retrieves the view for the specified view token.

Service Reference:

Examples:

Calling the describeView operation

var params = {
  ConnectionToken: 'STRING_VALUE', /* required */
  ViewToken: 'STRING_VALUE' /* required */
};
connectparticipant.describeView(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ViewToken — (String)

      An encrypted token originating from the interactive message of a ShowView block operation. Represents the desired view.

    • ConnectionToken — (String)

      The connection token.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • View — (map)

        A view resource object. Contains metadata and content necessary to render the view.

        • Id — (String)

          The identifier of the view.

        • Arn — (String)

          The Amazon Resource Name (ARN) of the view.

        • Name — (String)

          The name of the view.

        • Version — (Integer)

          The current version of the view.

        • Content — (map)

          View content containing all content necessary to render a view except for runtime input data.

          • InputSchema — (String)

            The schema representing the input data that the view template must be supplied to render.

          • Template — (String)

            The view template representing the structure of the view.

          • Actions — (Array<String>)

            A list of actions possible from the view

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

disconnectParticipant(params = {}, callback) ⇒ AWS.Request

Disconnects a participant.

Note: ConnectionToken is used for invoking this API instead of ParticipantToken.

The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Service Reference:

Examples:

Calling the disconnectParticipant operation

var params = {
  ConnectionToken: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE'
};
connectparticipant.disconnectParticipant(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ClientToken — (String)

      A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.

      If a token is not provided, the SDK will use a version 4 UUID.
    • ConnectionToken — (String)

      The authentication token associated with the participant's connection.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getAttachment(params = {}, callback) ⇒ AWS.Request

Provides a pre-signed URL for download of a completed attachment. This is an asynchronous API for use with active contacts.

Note: ConnectionToken is used for invoking this API instead of ParticipantToken.

The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Service Reference:

Examples:

Calling the getAttachment operation

var params = {
  AttachmentId: 'STRING_VALUE', /* required */
  ConnectionToken: 'STRING_VALUE' /* required */
};
connectparticipant.getAttachment(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • AttachmentId — (String)

      A unique identifier for the attachment.

    • ConnectionToken — (String)

      The authentication token associated with the participant's connection.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Url — (String)

        This is the pre-signed URL that can be used for uploading the file to Amazon S3 when used in response to StartAttachmentUpload.

      • UrlExpiry — (String)

        The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getTranscript(params = {}, callback) ⇒ AWS.Request

Retrieves a transcript of the session, including details about any attachments. For information about accessing past chat contact transcripts for a persistent chat, see Enable persistent chat.

If you have a process that consumes events in the transcript of an chat that has ended, note that chat transcripts contain the following event content types if the event has occurred during the chat session:

  • application/vnd.amazonaws.connect.event.participant.left

  • application/vnd.amazonaws.connect.event.participant.joined

  • application/vnd.amazonaws.connect.event.chat.ended

  • application/vnd.amazonaws.connect.event.transfer.succeeded

  • application/vnd.amazonaws.connect.event.transfer.failed

Note: ConnectionToken is used for invoking this API instead of ParticipantToken.

The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Service Reference:

Examples:

Calling the getTranscript operation

var params = {
  ConnectionToken: 'STRING_VALUE', /* required */
  ContactId: 'STRING_VALUE',
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  ScanDirection: FORWARD | BACKWARD,
  SortOrder: DESCENDING | ASCENDING,
  StartPosition: {
    AbsoluteTime: 'STRING_VALUE',
    Id: 'STRING_VALUE',
    MostRecent: 'NUMBER_VALUE'
  }
};
connectparticipant.getTranscript(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ContactId — (String)

      The contactId from the current contact chain for which transcript is needed.

    • MaxResults — (Integer)

      The maximum number of results to return in the page. Default: 10.

    • NextToken — (String)

      The pagination token. Use the value returned previously in the next subsequent request to retrieve the next set of results.

    • ScanDirection — (String)

      The direction from StartPosition from which to retrieve message. Default: BACKWARD when no StartPosition is provided, FORWARD with StartPosition.

      Possible values include:
      • "FORWARD"
      • "BACKWARD"
    • SortOrder — (String)

      The sort order for the records. Default: DESCENDING.

      Possible values include:
      • "DESCENDING"
      • "ASCENDING"
    • StartPosition — (map)

      A filtering option for where to start.

      • Id — (String)

        The ID of the message or event where to start.

      • AbsoluteTime — (String)

        The time in ISO format where to start.

        It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

      • MostRecent — (Integer)

        The start position of the most recent message where you want to start.

    • ConnectionToken — (String)

      The authentication token associated with the participant's connection.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • InitialContactId — (String)

        The initial contact ID for the contact.

      • Transcript — (Array<map>)

        The list of messages in the session.

        • AbsoluteTime — (String)

          The time when the message or event was sent.

          It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

        • Content — (String)

          The content of the message or event.

        • ContentType — (String)

          The type of content of the item.

        • Id — (String)

          The ID of the item.

        • Type — (String)

          Type of the item: message or event.

          Possible values include:
          • "TYPING"
          • "PARTICIPANT_JOINED"
          • "PARTICIPANT_LEFT"
          • "CHAT_ENDED"
          • "TRANSFER_SUCCEEDED"
          • "TRANSFER_FAILED"
          • "MESSAGE"
          • "EVENT"
          • "ATTACHMENT"
          • "CONNECTION_ACK"
          • "MESSAGE_DELIVERED"
          • "MESSAGE_READ"
        • ParticipantId — (String)

          The ID of the sender in the session.

        • DisplayName — (String)

          The chat display name of the sender.

        • ParticipantRole — (String)

          The role of the sender. For example, is it a customer, agent, or system.

          Possible values include:
          • "AGENT"
          • "CUSTOMER"
          • "SYSTEM"
          • "CUSTOM_BOT"
          • "SUPERVISOR"
        • Attachments — (Array<map>)

          Provides information about the attachments.

          • ContentType — (String)

            Describes the MIME file type of the attachment. For a list of supported file types, see Feature specifications in the Amazon Connect Administrator Guide.

          • AttachmentId — (String)

            A unique identifier for the attachment.

          • AttachmentName — (String)

            A case-sensitive name of the attachment being uploaded.

          • Status — (String)

            Status of the attachment.

            Possible values include:
            • "APPROVED"
            • "REJECTED"
            • "IN_PROGRESS"
        • MessageMetadata — (map)

          The metadata related to the message. Currently this supports only information related to message receipts.

          • MessageId — (String)

            The identifier of the message that contains the metadata information.

          • Receipts — (Array<map>)

            The list of receipt information for a message for different recipients.

            • DeliveredTimestamp — (String)

              The time when the message was delivered to the recipient.

            • ReadTimestamp — (String)

              The time when the message was read by the recipient.

            • RecipientParticipantId — (String)

              The identifier of the recipient of the message.

        • RelatedContactId — (String)

          The contactId on which the transcript item was originally sent. This field is only populated for persistent chats when the transcript item is from the past chat session. For more information, see Enable persistent chat.

        • ContactId — (String)

          The contactId on which the transcript item was originally sent. This field is populated only when the transcript item is from the current chat session.

      • NextToken — (String)

        The pagination token. Use the value returned previously in the next subsequent request to retrieve the next set of results.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

sendEvent(params = {}, callback) ⇒ AWS.Request

Note: The application/vnd.amazonaws.connect.event.connection.acknowledged ContentType will no longer be supported starting December 31, 2024. This event has been migrated to the CreateParticipantConnection API using the ConnectParticipant field.

Sends an event. Message receipts are not supported when there are more than two active participants in the chat. Using the SendEvent API for message receipts when a supervisor is barged-in will result in a conflict exception.

Note: ConnectionToken is used for invoking this API instead of ParticipantToken.

The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Service Reference:

Examples:

Calling the sendEvent operation

var params = {
  ConnectionToken: 'STRING_VALUE', /* required */
  ContentType: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE',
  Content: 'STRING_VALUE'
};
connectparticipant.sendEvent(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ContentType — (String)

      The content type of the request. Supported types are:

      • application/vnd.amazonaws.connect.event.typing

      • application/vnd.amazonaws.connect.event.connection.acknowledged (will be deprecated on December 31, 2024)

      • application/vnd.amazonaws.connect.event.message.delivered

      • application/vnd.amazonaws.connect.event.message.read

    • Content — (String)

      The content of the event to be sent (for example, message text). For content related to message receipts, this is supported in the form of a JSON string.

      Sample Content: "{\"messageId\":\"11111111-aaaa-bbbb-cccc-EXAMPLE01234\"}"

    • ClientToken — (String)

      A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.

      If a token is not provided, the SDK will use a version 4 UUID.
    • ConnectionToken — (String)

      The authentication token associated with the participant's connection.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Id — (String)

        The ID of the response.

      • AbsoluteTime — (String)

        The time when the event was sent.

        It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

sendMessage(params = {}, callback) ⇒ AWS.Request

Sends a message.

Note: ConnectionToken is used for invoking this API instead of ParticipantToken.

The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Service Reference:

Examples:

Calling the sendMessage operation

var params = {
  ConnectionToken: 'STRING_VALUE', /* required */
  Content: 'STRING_VALUE', /* required */
  ContentType: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE'
};
connectparticipant.sendMessage(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ContentType — (String)

      The type of the content. Supported types are text/plain, text/markdown, application/json, and application/vnd.amazonaws.connect.message.interactive.response.

    • Content — (String)

      The content of the message.

      • For text/plain and text/markdown, the Length Constraints are Minimum of 1, Maximum of 1024.

      • For application/json, the Length Constraints are Minimum of 1, Maximum of 12000.

      • For application/vnd.amazonaws.connect.message.interactive.response, the Length Constraints are Minimum of 1, Maximum of 12288.

    • ClientToken — (String)

      A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.

      If a token is not provided, the SDK will use a version 4 UUID.
    • ConnectionToken — (String)

      The authentication token associated with the connection.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Id — (String)

        The ID of the message.

      • AbsoluteTime — (String)

        The time when the message was sent.

        It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startAttachmentUpload(params = {}, callback) ⇒ AWS.Request

Provides a pre-signed Amazon S3 URL in response for uploading the file directly to S3.

Note: ConnectionToken is used for invoking this API instead of ParticipantToken.

The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Service Reference:

Examples:

Calling the startAttachmentUpload operation

var params = {
  AttachmentName: 'STRING_VALUE', /* required */
  AttachmentSizeInBytes: 'NUMBER_VALUE', /* required */
  ClientToken: 'STRING_VALUE', /* required */
  ConnectionToken: 'STRING_VALUE', /* required */
  ContentType: 'STRING_VALUE' /* required */
};
connectparticipant.startAttachmentUpload(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ContentType — (String)

      Describes the MIME file type of the attachment. For a list of supported file types, see Feature specifications in the Amazon Connect Administrator Guide.

    • AttachmentSizeInBytes — (Integer)

      The size of the attachment in bytes.

    • AttachmentName — (String)

      A case-sensitive name of the attachment being uploaded.

    • ClientToken — (String)

      A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.

      If a token is not provided, the SDK will use a version 4 UUID.
    • ConnectionToken — (String)

      The authentication token associated with the participant's connection.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • AttachmentId — (String)

        A unique identifier for the attachment.

      • UploadMetadata — (map)

        Fields to be used while uploading the attachment.

        • Url — (String)

          This is the pre-signed URL that can be used for uploading the file to Amazon S3 when used in response to StartAttachmentUpload.

        • UrlExpiry — (String)

          The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

        • HeadersToInclude — (map<String>)

          The headers to be provided while uploading the file to the URL.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.