Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    RegulatoryContext RegulatoryContext Route
    SectionName String Query-String Name of the section.
    UserKey UserKey Route
  • Response Parameters

    View Response Codes
    Name Type Description
    __count Number The total count of items in the feed.
    __next String The link for the next page of items in the feed.
    Data Section [] The collection of entities for this feed.
    MaxRows Number The maximum number of rows that can be returned (if applicable).
  • Request Example

    Request URL
    GET /reg/v3/mifid/qnasections/{UserKey}/Advisory?SectionName=knowledge-experience
  • Response Example

    Response body
    {
      "__count": 2,
      "Data": [
        {
          "Data": [
            {
              "Answer": "Postgraduate degree",
              "Question": "What is your highest education?"
            },
            {
              "Answer": "When I have experience with trading a complex product, it means that I have the required level of knowledge and experience for all other complex products",
              "Question": "Which of the following statements is true"
            }
          ],
          "Language": "EN",
          "LastUpdated": "2025-01-04T08:52:51.839048Z",
          "SectionName": "general",
          "Status": "Successful"
        },
        {
          "Data": [
            {
              "Answer": "Yes",
              "Question": "Would you like to invest in Complex bonds?"
            },
            {
              "Answer": "100000 DKK",
              "Question": "How much would you like to invest in Complex bonds?"
            }
          ],
          "Language": "EN",
          "LastUpdated": "2025-01-04T08:52:51.839048Z",
          "SectionName": "complexbonds",
          "Status": "Successful"
        }
      ]
    }