TechStacks!

<back to all web services

FindTechStacks

AutoQueryTechStacks
The following routes are available for this service:
All Verbs/techstacks/search
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports TechStacks.ServiceModel
Imports TechStacks.ServiceModel.Types

Namespace Global

    Namespace ServiceStack

        <DataContract>
        Public Partial Class QueryBase
            Public Sub New()
                Meta = New Dictionary(Of String, String)
            End Sub

            <DataMember(Order:=1)>
            Public Overridable Property Skip As Nullable(Of Integer)

            <DataMember(Order:=2)>
            Public Overridable Property Take As Nullable(Of Integer)

            <DataMember(Order:=3)>
            Public Overridable Property OrderBy As String

            <DataMember(Order:=4)>
            Public Overridable Property OrderByDesc As String

            <DataMember(Order:=5)>
            Public Overridable Property Include As String

            <DataMember(Order:=6)>
            Public Overridable Property Fields As String

            <DataMember(Order:=7)>
            Public Overridable Property Meta As Dictionary(Of String, String)
        End Class

        Public Partial Class QueryDb(Of From, Into)
            Inherits QueryBase
            Public Sub New()
                Meta = New Dictionary(Of String, String)
            End Sub

            <DataMember(Order:=1)>
            Public Overridable Property Skip As Nullable(Of Integer)

            <DataMember(Order:=2)>
            Public Overridable Property Take As Nullable(Of Integer)

            <DataMember(Order:=3)>
            Public Overridable Property OrderBy As String

            <DataMember(Order:=4)>
            Public Overridable Property OrderByDesc As String

            <DataMember(Order:=5)>
            Public Overridable Property Include As String

            <DataMember(Order:=6)>
            Public Overridable Property Fields As String

            <DataMember(Order:=7)>
            Public Overridable Property Meta As Dictionary(Of String, String)
        End Class

        <DataContract>
        Public Partial Class QueryResponse(Of Post)
            Public Sub New()
                Results = New List(Of Post)
                Meta = New Dictionary(Of String, String)
            End Sub

            <DataMember(Order:=1)>
            Public Overridable Property Offset As Integer

            <DataMember(Order:=2)>
            Public Overridable Property Total As Integer

            <DataMember(Order:=3)>
            Public Overridable Property Results As List(Of Post)

            <DataMember(Order:=4)>
            Public Overridable Property Meta As Dictionary(Of String, String)

            <DataMember(Order:=5)>
            Public Overridable Property ResponseStatus As ResponseStatus
        End Class
    End Namespace

    Namespace TechStacks.ServiceModel

        <AutoQueryViewer(DefaultSearchField:="Description", DefaultSearchText:="ServiceStack", DefaultSearchType:="Contains", Description:="Explore different Technology Stacks", IconUrl:="material-icons:cloud", Title:="Find Technology Stacks")>
        Public Partial Class FindTechStacks
            Inherits QueryDb(Of TechnologyStack, TechnologyStackView)
            Public Overridable Property Ids As List(Of Long)
            Public Overridable Property Name As String
            Public Overridable Property VendorName As String
            Public Overridable Property NameContains As String
            Public Overridable Property VendorNameContains As String
            Public Overridable Property DescriptionContains As String
            <DataMember(Order:=1)>
            Public Overridable Property Skip As Nullable(Of Integer)

            <DataMember(Order:=2)>
            Public Overridable Property Take As Nullable(Of Integer)

            <DataMember(Order:=3)>
            Public Overridable Property OrderBy As String

            <DataMember(Order:=4)>
            Public Overridable Property OrderByDesc As String

            <DataMember(Order:=5)>
            Public Overridable Property Include As String

            <DataMember(Order:=6)>
            Public Overridable Property Fields As String

            <DataMember(Order:=7)>
            Public Overridable Property Meta As Dictionary(Of String, String)
        End Class
    End Namespace

    Namespace TechStacks.ServiceModel.Types

        Public Partial Class Post
            Public Sub New()
                TechnologyIds = New Integer(){}
                Labels = New String(){}
                RefUserIds = New Integer(){}
                RefLinks = New String(){}
                MuteUserIds = New Integer(){}
            End Sub

            Public Overridable Property Id As Long
            Public Overridable Property OrganizationId As Integer
            Public Overridable Property UserId As Integer
            Public Overridable Property Type As PostType
            Public Overridable Property CategoryId As Integer
            Public Overridable Property Title As String
            Public Overridable Property Slug As String
            Public Overridable Property Url As String
            Public Overridable Property ImageUrl As String
            <StringLength(Integer.MaxValue)>
            Public Overridable Property Content As String

            <StringLength(Integer.MaxValue)>
            Public Overridable Property ContentHtml As String

            Public Overridable Property PinCommentId As Nullable(Of Long)
            Public Overridable Property TechnologyIds As Integer()
            Public Overridable Property FromDate As Nullable(Of Date)
            Public Overridable Property ToDate As Nullable(Of Date)
            Public Overridable Property Location As String
            Public Overridable Property MetaType As String
            Public Overridable Property Meta As String
            Public Overridable Property Approved As Boolean
            Public Overridable Property UpVotes As Long
            Public Overridable Property DownVotes As Long
            Public Overridable Property Points As Long
            Public Overridable Property Views As Long
            Public Overridable Property Favorites As Long
            Public Overridable Property Subscribers As Integer
            Public Overridable Property ReplyCount As Integer
            Public Overridable Property CommentsCount As Integer
            Public Overridable Property WordCount As Integer
            Public Overridable Property ReportCount As Integer
            Public Overridable Property LinksCount As Integer
            Public Overridable Property LinkedToCount As Integer
            Public Overridable Property Score As Integer
            Public Overridable Property Rank As Integer
            Public Overridable Property Labels As String()
            Public Overridable Property RefUserIds As Integer()
            Public Overridable Property RefLinks As String()
            Public Overridable Property MuteUserIds As Integer()
            Public Overridable Property LastCommentDate As Nullable(Of Date)
            Public Overridable Property LastCommentId As Nullable(Of Long)
            Public Overridable Property LastCommentUserId As Nullable(Of Integer)
            Public Overridable Property Deleted As Nullable(Of Date)
            Public Overridable Property DeletedBy As String
            Public Overridable Property Locked As Nullable(Of Date)
            Public Overridable Property LockedBy As String
            Public Overridable Property Hidden As Nullable(Of Date)
            Public Overridable Property HiddenBy As String
            Public Overridable Property Status As String
            Public Overridable Property StatusDate As Nullable(Of Date)
            Public Overridable Property StatusBy As String
            Public Overridable Property Archived As Boolean
            Public Overridable Property Bumped As Nullable(Of Date)
            Public Overridable Property Created As Date
            Public Overridable Property CreatedBy As String
            Public Overridable Property Modified As Date
            Public Overridable Property ModifiedBy As String
            Public Overridable Property RefId As Nullable(Of Long)
            Public Overridable Property RefSource As String
            Public Overridable Property RefUrn As String
        End Class

        Public Enum PostType
            Announcement
            Post
            Showcase
            Question
            Request
        End Enum

        Public Partial Class TechnologyStack
            Inherits TechnologyStackBase
            Public Overridable Property Id As Long
            Public Overridable Property Name As String
            Public Overridable Property VendorName As String
            Public Overridable Property Description As String
            Public Overridable Property AppUrl As String
            Public Overridable Property ScreenshotUrl As String
            Public Overridable Property Created As Date
            Public Overridable Property CreatedBy As String
            Public Overridable Property LastModified As Date
            Public Overridable Property LastModifiedBy As String
            Public Overridable Property IsLocked As Boolean
            Public Overridable Property OwnerId As String
            Public Overridable Property Slug As String
            <StringLength(Integer.MaxValue)>
            Public Overridable Property Details As String

            <StringLength(Integer.MaxValue)>
            Public Overridable Property DetailsHtml As String

            Public Overridable Property LastStatusUpdate As Nullable(Of Date)
            Public Overridable Property OrganizationId As Nullable(Of Integer)
            Public Overridable Property CommentsPostId As Nullable(Of Long)
            Public Overridable Property ViewCount As Integer
            Public Overridable Property FavCount As Integer
        End Class

        Public Partial Class TechnologyStackBase
            Public Overridable Property Id As Long
            Public Overridable Property Name As String
            Public Overridable Property VendorName As String
            Public Overridable Property Description As String
            Public Overridable Property AppUrl As String
            Public Overridable Property ScreenshotUrl As String
            Public Overridable Property Created As Date
            Public Overridable Property CreatedBy As String
            Public Overridable Property LastModified As Date
            Public Overridable Property LastModifiedBy As String
            Public Overridable Property IsLocked As Boolean
            Public Overridable Property OwnerId As String
            Public Overridable Property Slug As String
            <StringLength(Integer.MaxValue)>
            Public Overridable Property Details As String

            <StringLength(Integer.MaxValue)>
            Public Overridable Property DetailsHtml As String

            Public Overridable Property LastStatusUpdate As Nullable(Of Date)
            Public Overridable Property OrganizationId As Nullable(Of Integer)
            Public Overridable Property CommentsPostId As Nullable(Of Long)
            Public Overridable Property ViewCount As Integer
            Public Overridable Property FavCount As Integer
        End Class

        Public Partial Class TechnologyStackView
            Public Overridable Property Id As Nullable(Of Long)
            Public Overridable Property Name As String
            Public Overridable Property VendorName As String
            Public Overridable Property Description As String
            Public Overridable Property AppUrl As String
            Public Overridable Property ScreenshotUrl As String
            Public Overridable Property Created As Nullable(Of Date)
            Public Overridable Property CreatedBy As String
            Public Overridable Property LastModified As Nullable(Of Date)
            Public Overridable Property LastModifiedBy As String
            Public Overridable Property IsLocked As Nullable(Of Boolean)
            Public Overridable Property OwnerId As String
            Public Overridable Property Slug As String
            Public Overridable Property Details As String
            Public Overridable Property DetailsHtml As String
            Public Overridable Property LastStatusUpdate As Nullable(Of Date)
            Public Overridable Property OrganizationId As Nullable(Of Integer)
            Public Overridable Property CommentsPostId As Nullable(Of Long)
            Public Overridable Property ViewCount As Nullable(Of Integer)
            Public Overridable Property FavCount As Nullable(Of Integer)
        End Class
    End Namespace
End Namespace

VB.NET FindTechStacks 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.

POST /techstacks/search HTTP/1.1 
Host: techstacks.io 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"ids":[0],"name":"String","vendorName":"String","nameContains":"String","vendorNameContains":"String","descriptionContains":"String","skip":0,"take":0,"orderBy":"String","orderByDesc":"String","include":"String","fields":"String","meta":{"String":"String"}}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"offset":0,"total":0,"results":[{"id":0,"name":"String","vendorName":"String","description":"String","appUrl":"String","screenshotUrl":"String","created":"0001-01-01T00:00:00.0000000","createdBy":"String","lastModified":"0001-01-01T00:00:00.0000000","lastModifiedBy":"String","isLocked":false,"ownerId":"String","slug":"String","details":"String","detailsHtml":"String","lastStatusUpdate":"0001-01-01T00:00:00.0000000","organizationId":0,"commentsPostId":0,"viewCount":0,"favCount":0}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}