POST api/StripePayment?confirmpayment={confirmpayment}&StripeMsg={StripeMsg}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
confirmpayment

integer

Required

StripeMsg

string

Required

Body Parameters

AutoPayInvoiceModel
NameDescriptionTypeAdditional information
CustomerEmail

string

None.

InvoiceId

integer

None.

Amount

decimal number

None.

InvoiceDate

date

None.

StatementNumber

string

None.

CNF_PYMT_Mail

boolean

None.

Rej_Mail

boolean

None.

SecondaryEmail

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerEmail": "sample string 1",
  "InvoiceId": 2,
  "Amount": 3.0,
  "InvoiceDate": "2024-11-21T01:28:14.7125029-08:00",
  "StatementNumber": "sample string 5",
  "CNF_PYMT_Mail": true,
  "Rej_Mail": true,
  "SecondaryEmail": "sample string 8"
}

application/xml, text/xml

Sample:
<AutoPay.AutoPayInvoiceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ALOHA.GLOBAL.Models.Subscription">
  <Amount>3</Amount>
  <CNF_PYMT_Mail>true</CNF_PYMT_Mail>
  <CustomerEmail>sample string 1</CustomerEmail>
  <InvoiceDate>2024-11-21T01:28:14.7125029-08:00</InvoiceDate>
  <InvoiceId>2</InvoiceId>
  <Rej_Mail>true</Rej_Mail>
  <SecondaryEmail>sample string 8</SecondaryEmail>
  <StatementNumber>sample string 5</StatementNumber>
</AutoPay.AutoPayInvoiceModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.