PUT api/tenant/kyc/update/{tenantKYCID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tenantKYCID

integer

Required

Body Parameters

RecServiceTenantKYCDTOW
NameDescriptionTypeAdditional information
tenant_id

integer

Required

business_reg_number

string

Required

Max length: 100

confirmation_status

boolean

None.

confirmed_by

string

Max length: 100

Request Formats

application/json, text/json

Sample:
{
  "tenant_id": 1,
  "business_reg_number": "sample string 2",
  "confirmation_status": true,
  "confirmed_by": "sample string 3"
}

application/xml, text/xml

Sample:
<RecServiceTenantKYCDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
  <business_reg_number>sample string 2</business_reg_number>
  <confirmation_status>true</confirmation_status>
  <confirmed_by>sample string 3</confirmed_by>
  <tenant_id>1</tenant_id>
</RecServiceTenantKYCDTOW>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.