POST Users/GetDrivingLicenseInfo?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

DLInfoResponse
NameDescriptionTypeAdditional information
id

integer

None.

driving_license_number

string

None.

driving_license_date

date

None.

driving_license_front_image

string

None.

driving_license_back_image

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "driving_license_number": "sample string 2",
  "driving_license_date": "2025-11-08T13:23:12.0745477+03:00",
  "driving_license_front_image": "sample string 3",
  "driving_license_back_image": "sample string 4"
}

application/xml, text/xml

Sample:
<DLInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RentekerAPIProject.Controllers">
  <driving_license_back_image>sample string 4</driving_license_back_image>
  <driving_license_date>2025-11-08T13:23:12.0745477+03:00</driving_license_date>
  <driving_license_front_image>sample string 3</driving_license_front_image>
  <driving_license_number>sample string 2</driving_license_number>
  <id>1</id>
</DLInfoResponse>