POST api/gallery/DeleteMedia/{GalleryImageSysId}

Request Information

URI Parameters

NamedescriptionTypeAdditional information
GalleryImageSysId

string

None.

Body Parameters

Collection of Systemic.Model.mlGallery+Master+Detail
NamedescriptionTypeAdditional information
GalleryImageSysID

integer

None.

GallerySysID

integer

None.

FileName

string

None.

FileType

string

None.

IsApproved

boolean

None.

ApprovedBy

string

None.

ApprovedDate

string

None.

IsDeleted

boolean

None.

Request Formats

application/json, text/json, text/html

Sample:
[
  {
    "GalleryImageSysID": 1,
    "GallerySysID": 2,
    "FileName": "sample string 3",
    "FileType": "sample string 4",
    "IsApproved": true,
    "ApprovedBy": "sample string 6",
    "ApprovedDate": "sample string 7",
    "IsDeleted": true
  },
  {
    "GalleryImageSysID": 1,
    "GallerySysID": 2,
    "FileName": "sample string 3",
    "FileType": "sample string 4",
    "IsApproved": true,
    "ApprovedBy": "sample string 6",
    "ApprovedDate": "sample string 7",
    "IsDeleted": true
  }
]

text/xml

Sample:
<ArrayOfmlGallery.Master.Detail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Systemic.Model">
  <mlGallery.Master.Detail>
    <ApprovedBy>sample string 6</ApprovedBy>
    <ApprovedDate>sample string 7</ApprovedDate>
    <FileName>sample string 3</FileName>
    <FileType>sample string 4</FileType>
    <GalleryImageSysID>1</GalleryImageSysID>
    <GallerySysID>2</GallerySysID>
    <IsApproved>true</IsApproved>
    <IsDeleted>true</IsDeleted>
  </mlGallery.Master.Detail>
  <mlGallery.Master.Detail>
    <ApprovedBy>sample string 6</ApprovedBy>
    <ApprovedDate>sample string 7</ApprovedDate>
    <FileName>sample string 3</FileName>
    <FileType>sample string 4</FileType>
    <GalleryImageSysID>1</GalleryImageSysID>
    <GallerySysID>2</GallerySysID>
    <IsApproved>true</IsApproved>
    <IsDeleted>true</IsDeleted>
  </mlGallery.Master.Detail>
</ArrayOfmlGallery.Master.Detail>

response Information

Resource description

Api.Server.ServerResponse
NamedescriptionTypeAdditional information
response

string

None.

success

Api.Server.MlSuccess

None.

failure

Api.Server.MlError

None.

response Formats

application/json, text/json, text/html

Sample:
{
  "response": "sample string 1",
  "success": null,
  "failure": null
}

text/xml

Sample:
<ServerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Server">
  <failure i:nil="true" />
  <response>sample string 1</response>
  <success i:nil="true" />
</ServerResponse>