ASH.ResourceLibrary.WebApi

<back to all web services

FilterRequest

Requires Authentication
The following routes are available for this service:
GET/filtersGets the list of available filters
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 Filter
            Public Overridable Property Id As String
            Public Overridable Property Name As String
            Public Overridable Property Category As String
            Public Overridable Property BitwiseId As UInt64
        End Class
    End Namespace

    Namespace ASH.ResourceLibrary.Interfaces.ServiceModels

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

        Public Partial Class FilterRequest
            Inherits BasicResourceLibraryRequest
        End Class

        Public Partial Class FilterResponse
            Public Overridable Property Filters As ICollection(Of Filter)
        End Class
    End Namespace
End Namespace

VB.NET FilterRequest DTOs

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

HTTP + CSV

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

GET /filters HTTP/1.1 
Host: resourcelibrary.api.ashcompanies.com 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"filters":null}