POST api/Values/ProjectGalleryAdvertisementMapping

Request Information

URI Parameters

None.

Body Parameters

Project_Gallery_Advertisement_Mapping_Property
NameDescriptionTypeAdditional information
project_gallery_advertisement_id

integer

None.

project_id

integer

None.

property_id

integer

None.

project_gallery_advertisement_mapping_id

integer

None.

last_update_date

string

None.

count

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "project_gallery_advertisement_id": 1,
  "project_id": 2,
  "property_id": 3,
  "project_gallery_advertisement_mapping_id": 4,
  "last_update_date": "sample string 5",
  "count": 6
}

application/xml, text/xml

Sample:
<Project_Gallery_Advertisement_Mapping_Property xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.NewProject">
  <count>6</count>
  <last_update_date>sample string 5</last_update_date>
  <project_gallery_advertisement_id>1</project_gallery_advertisement_id>
  <project_gallery_advertisement_mapping_id>4</project_gallery_advertisement_mapping_id>
  <project_id>2</project_id>
  <property_id>3</property_id>
</Project_Gallery_Advertisement_Mapping_Property>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Project_Gallery_Advertisement_Mapping_Response
NameDescriptionTypeAdditional information
success

boolean

None.

msg

string

None.

data

Project_Gallery_Advertisement_Mapping_Property

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "msg": "sample string 2",
  "data": {
    "project_gallery_advertisement_id": 1,
    "project_id": 2,
    "property_id": 3,
    "project_gallery_advertisement_mapping_id": 4,
    "last_update_date": "sample string 5",
    "count": 6
  }
}

application/xml, text/xml

Sample:
<Project_Gallery_Advertisement_Mapping_Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.FunctionClasses.Response">
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.NewProject">
    <d2p1:count>6</d2p1:count>
    <d2p1:last_update_date>sample string 5</d2p1:last_update_date>
    <d2p1:project_gallery_advertisement_id>1</d2p1:project_gallery_advertisement_id>
    <d2p1:project_gallery_advertisement_mapping_id>4</d2p1:project_gallery_advertisement_mapping_id>
    <d2p1:project_id>2</d2p1:project_id>
    <d2p1:property_id>3</d2p1:property_id>
  </data>
  <msg>sample string 2</msg>
  <success>true</success>
</Project_Gallery_Advertisement_Mapping_Response>