POST api/verification/create

Request Information

URI Parameters

None.

Body Parameters

RecVerificationDTOW
NameDescriptionTypeAdditional information
applicant_id

integer

Required

govt_type_id

integer

Required

govt_type_image

Collection of byte

Required

govt_ID_number

string

Required

Max length: 200

ver_pay_det_id

integer

Required

amount_paid

decimal number

Required

payment_status

integer

Required

transaction_id

string

Required

Max length: 200

Request Formats

application/json, text/json

Sample:
{
  "applicant_id": 1,
  "govt_type_id": 2,
  "govt_type_image": "QEA=",
  "govt_ID_number": "sample string 3",
  "ver_pay_det_id": 4,
  "amount_paid": 5.0,
  "payment_status": 6,
  "transaction_id": "sample string 7"
}

application/xml, text/xml

Sample:
<RecVerificationDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
  <amount_paid>5</amount_paid>
  <applicant_id>1</applicant_id>
  <govt_ID_number>sample string 3</govt_ID_number>
  <govt_type_id>2</govt_type_id>
  <govt_type_image>QEA=</govt_type_image>
  <payment_status>6</payment_status>
  <transaction_id>sample string 7</transaction_id>
  <ver_pay_det_id>4</ver_pay_det_id>
</RecVerificationDTOW>

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 'RecVerificationDTOW'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.