| GET | /proofofdelivery | Get a pdf of the ePOD generated for an order after completion. |
|---|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using WebService.ClientServiceModel;
using WebService.ClientServiceModel.Base;
namespace WebService.ClientServiceModel
{
public partial class GetProofOfDelivery
: ApiServiceRequest, ILogRequest
{
///<summary>
///The ID of the order
///</summary>
[ApiMember(Description="The ID of the order")]
public virtual Guid OrderId { get; set; }
///<summary>
///The 1F waybill for the order
///</summary>
[ApiMember(Description="The 1F waybill for the order")]
public virtual string Waybill { get; set; }
}
}
namespace WebService.ClientServiceModel.Base
{
public partial class ApiServiceRequest
: IServiceRequest, IHasApiKey
{
///<summary>
///The API Key required for authentication
///</summary>
[ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true)]
public virtual string ApiKey { get; set; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
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: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{}