TechStacks!

<back to all web services

AppOverview

Site
The following routes are available for this service:
All Verbs/app-overview
import java.math.*
import java.util.*
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*


open class AppOverview : IGet
{
    var reload:Boolean? = null
}

open class AppOverviewResponse
{
    var created:Date? = null
    var allTiers:ArrayList<Option> = ArrayList<Option>()
    var topTechnologies:ArrayList<TechnologyInfo> = ArrayList<TechnologyInfo>()
    var responseStatus:ResponseStatus? = null
}

@DataContract
open class Option
{
    @DataMember(Name="name")
    @SerializedName("name")
    var name:String? = null

    @DataMember(Name="title")
    @SerializedName("title")
    var title:String? = null

    @DataMember(Name="value")
    @SerializedName("value")
    var value:TechnologyTier? = null
}

enum class TechnologyTier
{
    ProgrammingLanguage,
    Client,
    Http,
    Server,
    Data,
    SoftwareInfrastructure,
    OperatingSystem,
    HardwareInfrastructure,
    ThirdPartyServices,
}

open class TechnologyInfo
{
    var tier:TechnologyTier? = null
    var slug:String? = null
    var name:String? = null
    var logoUrl:String? = null
    var stacksCount:Int? = null
}

Kotlin AppOverview 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.

POST /app-overview HTTP/1.1 
Host: techstacks.io 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"reload":false}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"created":"0001-01-01T00:00:00.0000000","allTiers":[{"name":"String","title":"String","value":"ProgrammingLanguage"}],"topTechnologies":[{"tier":"ProgrammingLanguage","slug":"String","name":"String","logoUrl":"String","stacksCount":0}],"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}