ASH.ResourceLibrary.WebApi

<back to all web services

TopicRequest

Requires Authentication
The following routes are available for this service:
GET/topics/{topicid}Use to get Resource Library Topic
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports ASH.ResourceLibrary.Interfaces.ServiceModels
Imports ASH.ResourceLibrary.Interfaces.Models

Namespace Global

    Namespace ASH.ResourceLibrary.Interfaces.Models

        Public Partial Class ResourceCard
            Public Sub New()
                Tags = New List(Of Tag)
                Screenshots = New List(Of ScreenshotItem)
            End Sub

            Public Overridable Property Id As String
            Public Overridable Property Title As String
            Public Overridable Property Description As String
            Public Overridable Property DescriptionSummary As String
            Public Overridable Property Type As String
            Public Overridable Property Content As String
            Public Overridable Property IsComplete As Boolean
            Public Overridable Property IsFavorite As Boolean
            Public Overridable Property IsImplicitlyComplete As Boolean
            Public Overridable Property MediaPath As String
            Public Overridable Property IsConfirmable As Boolean
            Public Overridable Property IsWcagCompliant As Boolean
            Public Overridable Property Duration As String
            Public Overridable Property Preview As String
            Public Overridable Property Calories As Integer
            Public Overridable Property Instructor As String
            Public Overridable Property Thumbnail As String
            Public Overridable Property Difficulty As String
            Public Overridable Property Tags As List(Of Tag)
            Public Overridable Property Subtitles As String
            Public Overridable Property Screenshots As List(Of ScreenshotItem)
            Public Overridable Property DrmEncrypted As Boolean
        End Class

        Public Partial Class ScreenshotItem
            Public Overridable Property LargeFilepathS3 As String
            Public Overridable Property ThumbFilepathS3 As String
            Public Overridable Property Order As Decimal
            Public Overridable Property Description As String
        End Class

        Public Partial Class SubtopicLite
            Public Overridable Property Id As String
            Public Overridable Property Title As String
            Public Overridable Property ResourceCount As Integer
            Public Overridable Property ResourceItems As ICollection(Of ResourceCard)
        End Class

        Public Partial Class Tag
            Public Overridable Property Id As String
            Public Overridable Property Title As String
        End Class

        Public Partial Class TopicLite
            Public Overridable Property Id As String
            Public Overridable Property SubtopicItems As ICollection(Of SubtopicLite)
            Public Overridable Property ResourceItems As ICollection(Of ResourceCard)
            Public Overridable Property Title As String
            Public Overridable Property IsVisible As String
            Public Overridable Property ResourceCount As Integer
        End Class
    End Namespace

    Namespace ASH.ResourceLibrary.Interfaces.ServiceModels

        Public Partial Class BasicResourceLibraryRequest
            Public Overridable Property ResourceLibraryMemberId As Integer
        End Class

        Public Partial Class TopicRequest
            Inherits BasicResourceLibraryRequest
            Public Overridable Property IncludeCompletionStatus As Boolean
            Public Overridable Property Limit As String
            Public Overridable Property Offset As String
            Public Overridable Property TopicId As String
            Public Overridable Property IsMobile As Boolean
            '''<Summary>
            '''Set it to true if the topic being requested belogs to digital fitness. Don't set it if unsure.
            '''</Summary>
            <ApiMember(Description:="Set it to true if the topic being requested belogs to digital fitness. Don't set it if unsure.")>
            Public Overridable Property DigitalFitness As Boolean
        End Class

        Public Partial Class TopicResponse
            Public Overridable Property Topic As TopicLite
        End Class
    End Namespace
End Namespace

VB.NET TopicRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /topics/{topicid} HTTP/1.1 
Host: resourcelibrary.api.ashcompanies.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"topic":{"id":"String","subtopicItems":null,"resourceItems":null,"title":"String","isVisible":"String","resourceCount":0}}