Skip to main content
GET
/
api
/
Grant
/
QueryOptions
Get Grant Query Options
curl --request GET \
  --url https://api.virtuoussoftware.com/api/Grant/QueryOptions \
  --header 'Authorization: Bearer <token>'
{
  "options": [
    {
      "parameter": "<string>",
      "type": "<string>",
      "operatorOptions": [
        {
          "operator": "<string>",
          "multipleValuesAllowed": "<boolean>",
          "valueRequired": "<boolean>"
        },
        {
          "operator": "<string>",
          "multipleValuesAllowed": "<boolean>",
          "valueRequired": "<boolean>"
        }
      ],
      "valueOptions": [
        "<string>",
        "<string>"
      ]
    },
    {
      "parameter": "<string>",
      "type": "<string>",
      "operatorOptions": [
        {
          "operator": "<string>",
          "multipleValuesAllowed": "<boolean>",
          "valueRequired": "<boolean>"
        },
        {
          "operator": "<string>",
          "multipleValuesAllowed": "<boolean>",
          "valueRequired": "<boolean>"
        }
      ],
      "valueOptions": [
        "<string>",
        "<string>"
      ]
    }
  ],
  "operatorOptions": [
    {
      "operator": "<string>",
      "multipleValuesAllowed": "<boolean>",
      "valueRequired": "<boolean>"
    },
    {
      "operator": "<string>",
      "multipleValuesAllowed": "<boolean>",
      "valueRequired": "<boolean>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

options
object[]
operatorOptions
object[]
Last modified on June 5, 2026