get-global-option-set
Retrieve the definition of a global option set by specifying its name, enabling precise metadata access within the PowerPlatform/Dataverse environment.
Instructions
Get a global option set definition by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
optionSetName | Yes | The name of the global option set |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"optionSetName": {
"description": "The name of the global option set",
"type": "string"
}
},
"required": [
"optionSetName"
],
"type": "object"
}