ImageServiceAPI

<back to all web services

GetProviderAttributesRequest

Requires Authentication
The following routes are available for this service:
GET/v4/providers/attributes
import Foundation
import ServiceStack

// @DataContract
public class GetProviderAttributesRequest : V4BaseRequest
{
    // @DataMember(Name="provider")
    public var provider:ImageProvider

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

    private enum CodingKeys : String, CodingKey {
        case provider
    }

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

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

// @DataContract
public class V4BaseRequest : Codable
{
    required public init(){}
}

public enum ImageProvider : String, Codable
{
    case None
    case Cloudinary
}

// @DataContract
public class GetProviderAttributesResponse : V4BaseResponse
{
    // @DataMember(Name="data")
    public var data:GetProviderAttributesResponseData

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

    private enum CodingKeys : String, CodingKey {
        case data
    }

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

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

// @DataContract
public class V4BaseResponse : Codable
{
    // @DataMember(Name="status")
    public var status:ResponseStatus

    required public init(){}
}

// @DataContract
public class GetProviderAttributesResponseData : Codable
{
    // @DataMember(Name="attributes")
    public var attributes:[String] = []

    required public init(){}
}


Swift GetProviderAttributesRequest 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 /v4/providers/attributes HTTP/1.1 
Host: image-service-api.qa.platform.georiot.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"data":{"attributes":["String"]},"status":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}