| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Carriers |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class CarrierRequest
{
}
public static class CarrierResponse
{
public ResponseStatus ResponseStatus = null;
public ArrayList<String> Carriers = new ArrayList<String>();
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public CarrierResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
public ArrayList<String> getCarriers() { return Carriers; }
public CarrierResponse setCarriers(ArrayList<String> value) { this.Carriers = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/Carriers HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Carriers":["String"]}