List Widgets that are accessible to the user

GET /v1/widget

List Widgets that are accessible to the user

Query parameters

  • widgetIds array[string] Required

    An array of uuid representing the unique identifiers of widget

  • domain string

    The domain to use for the url redirection

Responses

  • 200 application/json

    Widget Metadatas results

    Hide response attribute Show response attribute object
    • items array[object] Required

      The list of widget metadata responses

      Hide items attributes Show items attributes object
      • widgetId string Required

        The ID of the widget

      • widgetMetadata object Required

        The widget metadata, which can be a single item for course and document widget or an array for list of contents widget

  • 400

    Malformed payload

GET /v1/widget
curl \
 --request GET 'https://openapi.meltingspot.io/v1/widget?widgetIds=string'
Response examples (200)
{
  "items": [
    {
      "widgetId": "string",
      "widgetMetadata": {}
    }
  ]
}