POST api/ContentManagement/AddGalleryPhotos
Request Information
URI Parameters
None.
Body Parameters
GalleryMasterBO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| SessionName | string |
None. |
|
| EventName | string |
None. |
|
| FilePath | string |
None. |
|
| FileName | string |
None. |
|
| ImageOrVideo | boolean |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| CreatedBy | integer |
None. |
|
| ModifiedDate | date |
None. |
|
| ModifiedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"SessionName": "sample string 2",
"EventName": "sample string 3",
"FilePath": "sample string 4",
"FileName": "sample string 5",
"ImageOrVideo": true,
"IsActive": true,
"CreatedDate": "2026-07-24T13:13:29.6286984+00:00",
"CreatedBy": 1,
"ModifiedDate": "2026-07-24T13:13:29.6286984+00:00",
"ModifiedBy": 1
}
application/xml, text/xml
Sample:
<GalleryMasterBO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL.BO"> <CreatedBy>1</CreatedBy> <CreatedDate>2026-07-24T13:13:29.6286984+00:00</CreatedDate> <EventName>sample string 3</EventName> <FileName>sample string 5</FileName> <FilePath>sample string 4</FilePath> <ID>1</ID> <ImageOrVideo>true</ImageOrVideo> <IsActive>true</IsActive> <ModifiedBy>1</ModifiedBy> <ModifiedDate>2026-07-24T13:13:29.6286984+00:00</ModifiedDate> <SessionName>sample string 2</SessionName> </GalleryMasterBO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
APIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Data | Object |
None. |
|
| Count | integer |
None. |
|
| Activity | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Data": {},
"Count": 3,
"Activity": "sample string 4"
}
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL.BO"> <Activity>sample string 4</Activity> <Count>3</Count> <Data /> <Message>sample string 1</Message> </APIResponse>