POST api/Dashboards/GetCountsShipperMobile

Request Information

URI Parameters

None.

Body Parameters

CountRequest
NameDescriptionTypeAdditional information
Startdate

date

None.

Enddate

date

None.

BrokerId

string

None.

ContactId

string

None.

BrokerStatus

integer

None.

IsPortal

boolean

None.

Carrier

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Startdate": "2026-05-31T20:40:55.5437398+00:00",
  "Enddate": "2026-05-31T20:40:55.5437398+00:00",
  "BrokerId": "sample string 3",
  "ContactId": "sample string 4",
  "BrokerStatus": 5,
  "IsPortal": true,
  "Carrier": "sample string 7"
}

application/xml, text/xml

Sample:
<CountRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAL.API.Repository.Models">
  <BrokerId>sample string 3</BrokerId>
  <BrokerStatus>5</BrokerStatus>
  <Carrier>sample string 7</Carrier>
  <ContactId>sample string 4</ContactId>
  <Enddate>2026-05-31T20:40:55.5437398+00:00</Enddate>
  <IsPortal>true</IsPortal>
  <Startdate>2026-05-31T20:40:55.5437398+00:00</Startdate>
</CountRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CountRequest'.

Response Information

Resource Description

DashboardCountsShipper
NameDescriptionTypeAdditional information
AWBs

AwbsForShipper

None.

ShipperSlot

SlotManagement

None.

Invoices

InvoicesShipperCount

None.

CaseManagement

CaseCount

None.

Response Formats

application/json, text/json

Sample:
{
  "AWBs": {
    "ReadyForBooking": 1,
    "Booked": 2,
    "Accepted": 3,
    "NotDdispatched": 4,
    "Ddispatched": 5
  },
  "ShipperSlot": {
    "Active": 1,
    "Delivered": 2,
    "Expired": 3
  },
  "Invoices": {
    "NotPaid": 1,
    "Paid": 2,
    "Draft": 3,
    "Final": 4,
    "Cancelled": 5
  },
  "CaseManagement": {
    "Active": 1,
    "Resolved": 2,
    "Canceled": 3,
    "AwaitingForCustomerInput": 4
  }
}

application/xml, text/xml

Sample:
<DashboardCountsShipper xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAL.API.Repository.Models">
  <AWBs>
    <Accepted>3</Accepted>
    <Booked>2</Booked>
    <Ddispatched>5</Ddispatched>
    <NotDdispatched>4</NotDdispatched>
    <ReadyForBooking>1</ReadyForBooking>
  </AWBs>
  <CaseManagement>
    <Active>1</Active>
    <AwaitingForCustomerInput>4</AwaitingForCustomerInput>
    <Canceled>3</Canceled>
    <Resolved>2</Resolved>
  </CaseManagement>
  <Invoices>
    <Cancelled>5</Cancelled>
    <Draft>3</Draft>
    <Final>4</Final>
    <NotPaid>1</NotPaid>
    <Paid>2</Paid>
  </Invoices>
  <ShipperSlot>
    <Active>1</Active>
    <Delivered>2</Delivered>
    <Expired>3</Expired>
  </ShipperSlot>
</DashboardCountsShipper>