GET api/Subscription/GetAllCarriers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of tbl_carriers
NameDescriptionTypeAdditional information
pk_carrier_id

integer

None.

carrier_name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "pk_carrier_id": 1,
    "carrier_name": "sample string 2"
  },
  {
    "pk_carrier_id": 1,
    "carrier_name": "sample string 2"
  }
]

text/html

Sample:
[{"pk_carrier_id":1,"carrier_name":"sample string 2"},{"pk_carrier_id":1,"carrier_name":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOftbl_carriers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nishadi_DataLayer.Model">
  <tbl_carriers>
    <carrier_name>sample string 2</carrier_name>
    <pk_carrier_id>1</pk_carrier_id>
  </tbl_carriers>
  <tbl_carriers>
    <carrier_name>sample string 2</carrier_name>
    <pk_carrier_id>1</pk_carrier_id>
  </tbl_carriers>
</ArrayOftbl_carriers>