POST v1/user/shipment/offer/listStatus

MOBILE - Shipment offers by count status.

Request Information

URI Parameters

None.

Body Parameters

UserOfferByStatusRequestModel
NameDescriptionTypeAdditional information
status

Offer Status - Verdiğim Teklifler(1),Onaylanan Teklifler(2),Yoldaki Yükler(3),Teslim Onayı Bekleyen Taşımalar(4),Gerçekleşen Taşımalar(5)

integer

None.

user_id

User ID (GUID)

string

Required

Data type: Text

user_signature

MD5 hash signature for the active user to validate the request

string

Required

Data type: Text

Request Format

application/json, text/json

Sample:
{
  "status": 1,
  "user_id": "sample string 2",
  "user_signature": "sample string 3"
}

Response Information

Resource Description

MOBILE - Shipment offers by count status.

BaseMetaResultModelOfUserOffer[]
NameDescriptionTypeAdditional information
response

Collection of UserOffer

None.

meta

Basic meta information for the operation result

MetaModel

None.

Response Format

application/json, text/json

Sample:
{
  "response": [
    {
      "offer_id": 1,
      "offer_amount": 2,
      "offer_date_time": "sample string 3",
      "offer_user_declined": true,
      "company_address_city": "sample string 11",
      "company_address_district": "sample string 12",
      "company_address_neighborhood": "sample string 13",
      "company_address_street": "sample string 14",
      "company_address_zip_code": "sample string 15",
      "company_shipment_location_radius": 16,
      "licence_plate": "sample string 18"
    },
    {
      "offer_id": 1,
      "offer_amount": 2,
      "offer_date_time": "sample string 3",
      "offer_user_declined": true,
      "company_address_city": "sample string 11",
      "company_address_district": "sample string 12",
      "company_address_neighborhood": "sample string 13",
      "company_address_street": "sample string 14",
      "company_address_zip_code": "sample string 15",
      "company_shipment_location_radius": 16,
      "licence_plate": "sample string 18"
    }
  ],
  "meta": {
    "status_code": 1,
    "status_message": "sample string 2"
  }
}