POST Publication/GetPublictaion
Request Information
URI Parameters
None.
Body Parameters
MYCII_EWS.BusinessObjects.PSearch| Name | Description | Type | Additional information | 
|---|---|---|---|
| Title | string | 
                             None.  | 
                |
| Country | string | 
                             None.  | 
                |
| State | string | 
                             None.  | 
                |
| Sector | string | 
                             None.  | 
                |
| GroupId | integer | 
                             None.  | 
                |
| CallFor | string | 
                             None.  | 
                |
| BetweenFrom | integer | 
                             None.  | 
                |
| BetweenTo | integer | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "Title": "sample string 1",
  "Country": "sample string 2",
  "State": "sample string 3",
  "Sector": "sample string 4",
  "GroupId": 5,
  "CallFor": "sample string 6",
  "BetweenFrom": 7,
  "BetweenTo": 8
}
        application/xml, text/xml
            Sample:
        <PSearch xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Title>sample string 1</Title> <Country>sample string 2</Country> <State>sample string 3</State> <Sector>sample string 4</Sector> <GroupId>5</GroupId> <CallFor>sample string 6</CallFor> <BetweenFrom>7</BetweenFrom> <BetweenTo>8</BetweenTo> </PSearch>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
MYCII_EWS.BusinessObjects.Publications| Name | Description | Type | Additional information | 
|---|---|---|---|
| PList | Collection of MYCII_EWS.BusinessObjects.P | 
                             None.  | 
                |
| Total | integer | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
{
  "PList": [
    {
      "PublicationId": 1,
      "Title": "sample string 2",
      "BriefDescription": "sample string 3",
      "DateOfIssue": "2025-11-04T20:14:13.1581896+05:30"
    },
    {
      "PublicationId": 1,
      "Title": "sample string 2",
      "BriefDescription": "sample string 3",
      "DateOfIssue": "2025-11-04T20:14:13.1581896+05:30"
    }
  ],
  "Total": 1
}
        application/xml, text/xml
            Sample:
<Publications xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PList>
    <P>
      <PublicationId>1</PublicationId>
      <Title>sample string 2</Title>
      <BriefDescription>sample string 3</BriefDescription>
      <DateOfIssue>2025-11-04T20:14:13.1581896+05:30</DateOfIssue>
    </P>
    <P>
      <PublicationId>1</PublicationId>
      <Title>sample string 2</Title>
      <BriefDescription>sample string 3</BriefDescription>
      <DateOfIssue>2025-11-04T20:14:13.1581896+05:30</DateOfIssue>
    </P>
  </PList>
  <Total>1</Total>
</Publications>