GET api/service?countryId={countryId}

Get all available services by country (insurance availability)

Request Information

Parameters

NameDescriptionAdditional information
countryId
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "availableServices": [
    {
      "parcelTypeId": 1.0,
      "serviceName": "sample string 2",
      "description": "sample string 3",
      "hasInsurance": true
    },
    {
      "parcelTypeId": 1.0,
      "serviceName": "sample string 2",
      "description": "sample string 3",
      "hasInsurance": true
    },
    {
      "parcelTypeId": 1.0,
      "serviceName": "sample string 2",
      "description": "sample string 3",
      "hasInsurance": true
    }
  ],
  "Status": {
    "Code": "sample string 1",
    "descriptionEn": "sample string 2",
    "Description": "sample string 3",
    "descriptionRu": "sample string 4",
    "message": "sample string 5"
  }
}