POST api/Dashboard/MakeTempleDatareadyforRevieworPublish
Request Information
URI Parameters
None.
Body Parameters
TempleDataPublishInput| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| TempleID | integer |
None. |
|
| IsPublish | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"TempleID": 2,
"IsPublish": "sample string 3"
}
application/xml, text/xml
Sample:
<TempleDataPublishInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TempleDirectory.Controllers"> <IsPublish>sample string 3</IsPublish> <TempleID>2</TempleID> <UserID>1</UserID> </TempleDataPublishInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TempleDataPublishResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| TempleID | integer |
None. |
|
| ResponseCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TempleID": 1,
"ResponseCode": 2
}
application/xml, text/xml
Sample:
<TempleDataPublishResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TempleDirectory.Controllers"> <ResponseCode>2</ResponseCode> <TempleID>1</TempleID> </TempleDataPublishResponse>