POST SelfService/DataentryMFPopulating

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/IrmanPayWebApi.Models">
  <jsonstring>sample string 1</jsonstring>
</Jsonparams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DataentryMFPopulatingList
NameDescriptionTypeAdditional information
BeneficiaryList

Collection of BeneficiaryListOut

None.

CountryList

Collection of CountryListOut

None.

Response Formats

application/json, text/json

Sample:
{
  "BeneficiaryList": [
    {
      "BId": "sample string 1",
      "Beneficiary": "sample string 2"
    },
    {
      "BId": "sample string 1",
      "Beneficiary": "sample string 2"
    }
  ],
  "CountryList": [
    {
      "country_code": "sample string 1",
      "Country": "sample string 2"
    },
    {
      "country_code": "sample string 1",
      "Country": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<DataentryMFPopulatingList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IrmanPayWebApi.Models">
  <BeneficiaryList>
    <BeneficiaryListOut>
      <BId>sample string 1</BId>
      <Beneficiary>sample string 2</Beneficiary>
    </BeneficiaryListOut>
    <BeneficiaryListOut>
      <BId>sample string 1</BId>
      <Beneficiary>sample string 2</Beneficiary>
    </BeneficiaryListOut>
  </BeneficiaryList>
  <CountryList>
    <CountryListOut>
      <Country>sample string 2</Country>
      <country_code>sample string 1</country_code>
    </CountryListOut>
    <CountryListOut>
      <Country>sample string 2</Country>
      <country_code>sample string 1</country_code>
    </CountryListOut>
  </CountryList>
</DataentryMFPopulatingList>