POST api/Transactions/IsPayerIdExist/{payerId}/{country}/{consumerStatus}/{addressStatus}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
payerId

string

None.

country

string

None.

consumerStatus

string

None.

addressStatus

string

None.

Body Parameters

IsPayerIdExistPostModel
NameDescriptionTypeAdditional information
PayerId

string

None.

CountryId

integer

None.

ConsumerStatus

string

None.

AddressStatus

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PayerId": "sample string 1",
  "CountryId": 2,
  "ConsumerStatus": "sample string 3",
  "AddressStatus": "sample string 4"
}

application/xml, text/xml

Sample:
<IsPayerIdExistPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Transactions">
  <AddressStatus>sample string 4</AddressStatus>
  <ConsumerStatus>sample string 3</ConsumerStatus>
  <CountryId>2</CountryId>
  <PayerId>sample string 1</PayerId>
</IsPayerIdExistPostModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IsPayerIdExistResponseModel
NameDescriptionTypeAdditional information
Status

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true
}

application/xml, text/xml

Sample:
<IsPayerIdExistResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Transactions.Response">
  <Status>true</Status>
</IsPayerIdExistResponseModel>