POST API with JSON Array as the request body

I am trying to create an API request that has a JSON array in the request body ,here is an example of the request body. The schema is defined to look from data, so these ids would exist in the dataset.

{
  "identities": [
    "77we175a-531d-440c-a258-33e3fac82a6h",
       "0c4c42c6-7c34-453e-ab3e-ca3b7e0bd493",
       "5db58be4-b4ff-431e-9a43-5cfbd1172ff8"
  ],
  "status": "ALL"

}

Anyone have a possible solution, I assume this is possible…