API Route - Common

API endpoints

[GET] Get list of dropdown lists

Details

This API endpoint gets the list of possible values that are configured in Sunlight Enterprise for the DropDownList ID_OF_THE_DROPDOWN_LIST API endpoint :

/api/v1/dropdownlists/{ID_OF_THE_DROPDOWN_LIST}

Json response :

{
  "DropDownLists": [
    {
      "TypeName": "string",
      "ListofValues": [
        {
          "Value": 0,
          "LongLabel": "string",
          "LongLabelFrench": "string"
        }
      ]
    }
  ]
}