POST api/BillPayment

Request Information

URI Parameters

None.

Body Parameters

BillPaymentInput
NameDescriptionTypeAdditional information
id

Bill ID

integer

None.

date

payment date

date

None.

description

pay comment

string

None.

bill_return

bill return defalult:false

boolean

None.

id_fp_payment_type

Payment type(optional)

integer

None.

outer_id

External integration ID

string

None.

amount

Amount payed

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "date": "2024-11-16T04:23:46.5814743+00:00",
  "description": "sample string 3",
  "bill_return": true,
  "id_fp_payment_type": 1,
  "outer_id": "sample string 5",
  "amount": 6.0
}

application/xml, text/xml

Sample:
<BillPaymentInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <id>1</id>
  <date>2024-11-16T04:23:46.5814743+00:00</date>
  <description>sample string 3</description>
  <bill_return>true</bill_return>
  <id_fp_payment_type>1</id_fp_payment_type>
  <outer_id>sample string 5</outer_id>
  <amount>6</amount>
</BillPaymentInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.