MyApp

<back to all web services

QueryAlbums

Media
The following routes are available for this service:
GET/albums
GET/albums/{AlbumId}
import Foundation
import ServiceStack

public class QueryAlbums : QueryDb<Albums>, IGet
{
    public var albumId:Int?

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case albumId
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        albumId = try container.decodeIfPresent(Int.self, forKey: .albumId)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if albumId != nil { try container.encode(albumId, forKey: .albumId) }
    }
}

public class Albums : Codable
{
    public var albumId:Int
    // @Required()
    public var title:String?

    public var artistId:Int

    required public init(){}
}

public class Todo : Codable
{
    public var id:Int
    public var text:String
    public var isFinished:Bool

    required public init(){}
}


Swift QueryAlbums 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 /albums HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"offset":0,"total":0,"results":[{"albumId":0,"title":"String","artistId":0}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}