Multiple custom attributes in Order create Admin REST API

This question is regarding orderCreate (REST API) / draftOrderCreate(graphQL API)

I could see there is option to add custom attributes at order level and at line item level in graphQL API. There is an almost similar option - note-attributes in admin REST API but I could not add more than one mote attribute in admin REST API. Is there any way to add multiple key and value pair in note_attributes? This is my sample request

{
“order”: {
“inventory_behaviour”: “decrement_obeying_policy”,
“note” : “CreatedDate 2022-03-14T09:17:21.480Z”,

“note_attributes” : {“key”:“value”},
“financial_status”: “paid”

“line_items”: [{
“variant_id” : “39998503682090”,
“quantity”: 1
}],
“customer”: {
email":"connect@beanz.com
},
“shipping_address”: {
“first_name”: “Tim”,
“last_name”: “Cook”,
“address1”: “address1”,
“address2”: “address2”,
“phone”: “5555555555”,
“city”: “Chapel en le frith HIGH PEAK”,
“country”: “GB”,
“zip”: “SK23 9UG”
},
“billing_address”: {
“first_name”: “Michael”,
“last_name”: “George”,
“address1”: “address11”,
“address2”: “address22”,
“phone”: “1234567890”,
“city”: “Chapel en le frith HIGH PEAK”,
“country”: “GB”,
“zip”: “SK23 9UG”
}

}
}

In a case where you need multiple note_attributes, you can create an array with a respective object containing key-value pair -

"note_attributes": [
    {
      "name": "custom name",
      "value": "custom value"
    }
  ]

Mritunjay
Return Prime