I'm struggling to understand how to include URIs in a POST request, similar to this API request: link to example
This is my current request, but it's not functioning properly
fetch(endPoint, {
method: "POST",
headers: {
Authorization: `Bearer ${access_token}`,
},
body: JSON.stringify({
"uri": data
})
});
Appreciate any assistance in advance