Adding Internal Note at the time of ticket creation using POST /rest/api/3/issue

Hey guys,
I am using following payload for adding internal notes.

{

  "body": {

    "content": \[

      {

        "content": \[

          {

            "text": "internal note",

            "type": "text"

          }

        \],

        "type": "paragraph"

      }

    \],

    "type": "doc",

    "version": 1

  },

  "properties": \[

       {

         "key": "sd.public.comment",

         "value": {

           "internal": true

         }

       }

     \]

}

I am wondering if there is a way to add the internal note at time of ticket creation, rather than adding it via another API call.