@twilio/flex-sdk
    Preparing search index...

    Class GetConversationTransfers

    Retrieves conversation transfers for a specified task.

    The SID of the task the conversation belongs to.

    Optional configuration parameter for appending notes to the conversation transfers.

    A promise that resolves with the currently started conversation transfers.

    import { createClient } from "@twilio/flex-sdk";
    import { GetConversationTransfers } from "@twilio/flex-sdk/actions/Conversation";

    async function getConversationTransfers() {
    const client = await createClient("SDK_TOKEN");
    const getConversationTransfersAction = new GetConversationTransfers(
    "WTXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
    );
    const transfers = await client.execute(getConversationTransfersAction);
    return transfers;
    }

    Implements

    Index

    Constructors

    Methods

    Constructors

    Methods