GET api/Attachment8849/GetAllAttachmentByVehicleId/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Attachment8849DTO
NameDescriptionTypeAdditional information
id

integer

None.

attachmentOrgName

string

None.

attachmentSysName

string

None.

attachmentBase64

string

None.

vehicle8849Id

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "attachmentOrgName": "sample string 2",
    "attachmentSysName": "sample string 3",
    "attachmentBase64": "sample string 4",
    "vehicle8849Id": 5
  },
  {
    "id": 1,
    "attachmentOrgName": "sample string 2",
    "attachmentSysName": "sample string 3",
    "attachmentBase64": "sample string 4",
    "vehicle8849Id": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfAttachment8849DTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.DTOs">
  <Attachment8849DTO>
    <attachmentBase64>sample string 4</attachmentBase64>
    <attachmentOrgName>sample string 2</attachmentOrgName>
    <attachmentSysName>sample string 3</attachmentSysName>
    <id>1</id>
    <vehicle8849Id>5</vehicle8849Id>
  </Attachment8849DTO>
  <Attachment8849DTO>
    <attachmentBase64>sample string 4</attachmentBase64>
    <attachmentOrgName>sample string 2</attachmentOrgName>
    <attachmentSysName>sample string 3</attachmentSysName>
    <id>1</id>
    <vehicle8849Id>5</vehicle8849Id>
  </Attachment8849DTO>
</ArrayOfAttachment8849DTO>