GET api/Borne/document
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of IdentityDocument| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | 
                             None.  | 
                |
| KioskId | integer | 
                             None.  | 
                |
| Lastname | string | 
                             None.  | 
                |
| Firstname | string | 
                             None.  | 
                |
| Timestamp | date | 
                                 Data type: DateTime  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Id": 1,
    "KioskId": 2,
    "Lastname": "sample string 3",
    "Firstname": "sample string 4",
    "Timestamp": "2025-10-15T19:01:06.6413365+00:00"
  },
  {
    "Id": 1,
    "KioskId": 2,
    "Lastname": "sample string 3",
    "Firstname": "sample string 4",
    "Timestamp": "2025-10-15T19:01:06.6413365+00:00"
  }
]
        text/html
            Sample:
        
[{"Id":1,"KioskId":2,"Lastname":"sample string 3","Firstname":"sample string 4","Timestamp":"2025-10-15T19:01:06.6413365+00:00"},{"Id":1,"KioskId":2,"Lastname":"sample string 3","Firstname":"sample string 4","Timestamp":"2025-10-15T19:01:06.6413365+00:00"}]
        application/xml, text/xml
            Sample:
<ArrayOfIdentityDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EasyWelcome.WebApi.Models">
  <IdentityDocument>
    <Firstname>sample string 4</Firstname>
    <Id>1</Id>
    <KioskId>2</KioskId>
    <Lastname>sample string 3</Lastname>
    <Timestamp>2025-10-15T19:01:06.6413365+00:00</Timestamp>
  </IdentityDocument>
  <IdentityDocument>
    <Firstname>sample string 4</Firstname>
    <Id>1</Id>
    <KioskId>2</KioskId>
    <Lastname>sample string 3</Lastname>
    <Timestamp>2025-10-15T19:01:06.6413365+00:00</Timestamp>
  </IdentityDocument>
</ArrayOfIdentityDocument>