POST api/app311/AddIssueNoteImage
Request Information
URI Parameters
None.
Body Parameters
IssueNoteImageDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ImageId | integer |
None. |
|
| IssueNoteID | integer |
None. |
|
| DisplayOrder | integer |
None. |
|
| Image | ImageDTO |
None. |
Request Formats
application/json, text/json, text/html
Sample:
{
"ImageId": 1,
"IssueNoteID": 2,
"DisplayOrder": 3,
"Image": {
"ImageId": 1,
"ImagePath": "sample string 2",
"ImageBytes": "QEA="
}
}
application/xml, text/xml
Sample:
<IssueNoteImageDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/app311.Service.DataAccess.DTO">
<DisplayOrder>3</DisplayOrder>
<Image>
<ImageBytes>QEA=</ImageBytes>
<ImageId>1</ImageId>
<ImagePath>sample string 2</ImagePath>
</Image>
<ImageId>1</ImageId>
<IssueNoteID>2</IssueNoteID>
</IssueNoteImageDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json, text/html
Sample:
1
application/xml, text/xml
Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>