POST api/Wells

Request Information

URI Parameters

None.

Body Parameters

ACHSaleRequest
NameDescriptionTypeAdditional information
payment_method

string

None.

payment_id

string

None.

payment_amount

decimal number

None.

debit_credit_indicator

string

None.

payment_format

string

None.

payment_description

string

None.

payer

Payer

None.

payee

Payer

None.

invoice_information

Invoice_Information

None.

Request Formats

application/json, text/json

Sample:
{
  "payment_method": "sample string 1",
  "payment_id": "sample string 2",
  "payment_amount": 3.1,
  "debit_credit_indicator": "sample string 4",
  "payment_format": "sample string 5",
  "payment_description": "sample string 6",
  "payer": {
    "name": "sample string 1",
    "bank_information": {
      "bank_id": "sample string 1",
      "bank_id_type": "sample string 2",
      "bank_account_number": "sample string 3",
      "bank_account_type": "sample string 4"
    }
  },
  "payee": {
    "name": "sample string 1",
    "bank_information": {
      "bank_id": "sample string 1",
      "bank_id_type": "sample string 2",
      "bank_account_number": "sample string 3",
      "bank_account_type": "sample string 4"
    }
  },
  "invoice_information": {
    "invoice": [
      {
        "invoice_description": "sample string 1"
      },
      {
        "invoice_description": "sample string 1"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<ACHSaleRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KRSWebAPI.WellsFargo">
  <Amount>3.1</Amount>
  <D_C_Indicator>sample string 4</D_C_Indicator>
  <InvoiceInfo>
    <Inv>
      <Invoice>
        <InvoiceDescription>sample string 1</InvoiceDescription>
      </Invoice>
      <Invoice>
        <InvoiceDescription>sample string 1</InvoiceDescription>
      </Invoice>
    </Inv>
  </InvoiceInfo>
  <Payee>
    <Bank>
      <AccountNumber>sample string 3</AccountNumber>
      <AccountType>sample string 4</AccountType>
      <ID>sample string 1</ID>
      <IDType>sample string 2</IDType>
    </Bank>
    <Name>sample string 1</Name>
  </Payee>
  <Payer>
    <Bank>
      <AccountNumber>sample string 3</AccountNumber>
      <AccountType>sample string 4</AccountType>
      <ID>sample string 1</ID>
      <IDType>sample string 2</IDType>
    </Bank>
    <Name>sample string 1</Name>
  </Payer>
  <PaymentDescription>sample string 6</PaymentDescription>
  <PaymentFormat>sample string 5</PaymentFormat>
  <PaymentID>sample string 2</PaymentID>
  <PaymentMethod>sample string 1</PaymentMethod>
</ACHSaleRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ACHSaleRequest'.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>