[SalesForce] Exact Target Triggered Send using REST API, include CC and BCC Addresses

How can we send a transactional email to more than one recipients using FUEL REST Services. Using the below structure i am able to send mails to a single recipient also made a successfull batch send. still wondering how we can send CC or BCC Whats the Json structure to send a mail one recipient.

    POST https://www.exacttargetapis.com/messaging/v1/messageDefinitionSends/dfa5ab87-        1b0f-e211-b71b-9c8e9920e9fc/send?access_token=...
    Content-Type: application/json
    {
    "From": {
        "Address": "code@exacttarget.com",
        "Name": "Code@"
            },
    "To": {
        "Address": "example@example.com",
        "SubscriberKey": "example@example.com",
        "ContactAttributes": {
            "SubscriberAttributes": {
                "Region": "West",
                "City": "Indianapolis",
                "State": "IN"
            }
         }
       }
    }

Best Answer

While we are looking to add this in the future, there currently is no way to do this.