Create the same metadata descriptor in every open project the user can access that does not already own one with the same field name. Replaces one create request per project.
POST
/data/metadata-descriptors/all-projects
curl \
--request POST 'http://api.example.com/data/metadata-descriptors/all-projects' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"entity_type":"Project","name":"string","data_type":"string"}'
Request examples
{
"entity_type": "Project",
"name": "string",
"data_type": "string"
}