Can't link notes to shot entity via RESTful API

Hello,

I am trying to use the Shotgun RESTful API to create notes in my team’s Shotgun database. Below is the JSON I am using to create a couple of test notes. This JSON works to create two new note records with the right content and subject, but the problem is it is not linking correctly to the shot entities when I add that data to the “note_links” field as per the JSON below - the “note_links” field just shows up empty. Can you please provide some guidance or instruction on how to get the “note_links” multi-entity field to correctly link to a shot entity when used via the RESTful API? I don’t get any kind of error response with this JSON so I’m not sure what the issue could be.

{
  "requests": [
    {
      "data": {
        "content": "This is a test note.",
        "note_links": {
          "multi_entity_update_mode": "set",
          "value": [
            {
              "id": 1433,
              "type": "Shot"
            }
          ]
        },
        "project": {
          "id": 128,
          "type": "Project"
        },
        "subject": "Note from <blank> on xxx9999_vers on date 11/20/2020"
      },
      "entity": "Note",
      "request_type": "create"
    },
    {
      "data": {
        "content": "This is a second note.",
        "note_links": {
          "multi_entity_update_mode": "set",
          "value": [
            {
              "id": 1438,
              "type": "Shot"
            }
          ]
        },
        "project": {
          "id": 128,
          "type": "Project"
        },
        "subject": "Note from Mark on xxx9998 on date 11/20/2020"
      },
      "entity": "Note",
      "request_type": "create"
    }
  ]
}