POST api/Payment/SavePaymentRequest

Save Payment Request

Request Information

URI Parameters

None.

Body Parameters

PaymentRequestModel
NameDescriptionTypeAdditional information
EntityId

integer

None.

Amount

decimal number

None.

Currency

string

None.

RawRequest

string

None.

PolicyInvoices

string

None.

PolicyCount

integer

None.

CreatedOn

date

None.

CreatedBy

string

None.

Status

string

None.

RVFReferenceId

string

None.

SessionKey

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "EntityId": 1,
  "Amount": 1.0,
  "Currency": "sample string 2",
  "RawRequest": "sample string 3",
  "PolicyInvoices": "sample string 4",
  "PolicyCount": 1,
  "CreatedOn": "2025-05-02T07:09:39.5455593-07:00",
  "CreatedBy": "sample string 5",
  "Status": "sample string 6",
  "RVFReferenceId": "sample string 7",
  "SessionKey": "ba6ba995-641b-4fb5-8239-da67f3d6c402"
}

application/xml, text/xml

Sample:
<PaymentRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.MemberPortal.Data.Models.Payment">
  <Amount>1</Amount>
  <CreatedBy>sample string 5</CreatedBy>
  <CreatedOn>2025-05-02T07:09:39.5455593-07:00</CreatedOn>
  <Currency>sample string 2</Currency>
  <EntityId>1</EntityId>
  <PolicyCount>1</PolicyCount>
  <PolicyInvoices>sample string 4</PolicyInvoices>
  <RVFReferenceId>sample string 7</RVFReferenceId>
  <RawRequest>sample string 3</RawRequest>
  <SessionKey>ba6ba995-641b-4fb5-8239-da67f3d6c402</SessionKey>
  <Status>sample string 6</Status>
</PaymentRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>