POST api/applicant/Payment/MarkPaymentWebhookProcessed

Request Information

URI Parameters

None.

Body Parameters

MarkPaymentWebhookProcessedDTO
NameDescriptionTypeAdditional information
WebhookID

integer

None.

PaymentID

integer

None.

IsProcessed

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "WebhookID": 1,
  "PaymentID": 2,
  "IsProcessed": true
}

application/xml, text/xml

Sample:
<MarkPaymentWebhookProcessedDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomApplicationModels">
  <IsProcessed>true</IsProcessed>
  <PaymentID>2</PaymentID>
  <WebhookID>1</WebhookID>
</MarkPaymentWebhookProcessedDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponseOfBoolean
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": true
}

application/xml, text/xml

Sample:
<ApiResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models">
  <Data>true</Data>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ApiResponseOfboolean>