1Fetch Client API

<back to all web services

GetProofOfDelivery

The following routes are available for this service:
GET/proofofdeliveryGet a pdf of the ePOD generated for an order after completion.
import Foundation
import ServiceStack

public class GetProofOfDelivery : ApiServiceRequest, ILogRequest
{
    /**
    * The ID of the order
    */
    // @ApiMember(Description="The ID of the order")
    public var orderId:String

    /**
    * The 1F waybill for the order
    */
    // @ApiMember(Description="The 1F waybill for the order")
    public var waybill:String

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

    private enum CodingKeys : String, CodingKey {
        case orderId
        case waybill
    }

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

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

public class ApiServiceRequest : IServiceRequest, IHasApiKey, Codable
{
    /**
    * The API Key required for authentication
    */
    // @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true)
    public var apiKey:String

    required public init(){}
}


Swift GetProofOfDelivery 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 /proofofdelivery HTTP/1.1 
Host: 1fetch.api.client.prod.86degrees.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{}