POST api/GetFromCountry

Request Information

URI Parameters

None.

Body Parameters

Jsonparams
NameDescriptionTypeAdditional information
jsonstring

string

None.

Request Formats

application/json, text/json

Sample:
{
  "jsonstring": "sample string 1"
}

application/xml, text/xml

Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PayQuickCalCulatorWebAPI2023New.Models">
  <jsonstring>sample string 1</jsonstring>
</Jsonparams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetFromCountryOutList
NameDescriptionTypeAdditional information
Frcountry

Collection of GetFromCountryOut

None.

Result

Collection of ErrorLog

None.

Response Formats

application/json, text/json

Sample:
{
  "Frcountry": [
    {
      "country_Name": "sample string 1",
      "country_code": "sample string 2"
    },
    {
      "country_Name": "sample string 1",
      "country_code": "sample string 2"
    }
  ],
  "Result": [
    {
      "Mesage": "sample string 1",
      "Code": "sample string 2"
    },
    {
      "Mesage": "sample string 1",
      "Code": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<GetFromCountryOutList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PayQuickCalCulatorWebAPI2023New.Models">
  <Frcountry>
    <GetFromCountryOut>
      <country_Name>sample string 1</country_Name>
      <country_code>sample string 2</country_code>
    </GetFromCountryOut>
    <GetFromCountryOut>
      <country_Name>sample string 1</country_Name>
      <country_code>sample string 2</country_code>
    </GetFromCountryOut>
  </Frcountry>
  <Result>
    <ErrorLog>
      <Code>sample string 2</Code>
      <Mesage>sample string 1</Mesage>
    </ErrorLog>
    <ErrorLog>
      <Code>sample string 2</Code>
      <Mesage>sample string 1</Mesage>
    </ErrorLog>
  </Result>
</GetFromCountryOutList>