Get Single Announcements by ID API

To fetch a particular announcement using its unique announcement ID

Header:

Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf

Request Parameters:

*idID of the single announcement to be fetched

 Threshold Limit:  20 requests | Lock period: 5 minutes

Threshold Limit - Number of API calls allowed within a minute.
Lock Period - Wait time before consecutive API requests.

JSON Example

Copiedhttps://people.zoho.com/people/api/announcement/getAnnouncementByID?id=3610330000098011

Request

Header

CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf

Response

Copied<response uri="/api/announcement/getAnnouncementByID">
    <status>0</status>
    <message>Success</message>
    <result>
        <resultData>
            <announcementList>
                <data>
                    <owner>3000000013255</owner>
                    <modifiedTime>1542962837811</modifiedTime>
                    <subject>Wellness Program!</subject>
                    <isNotify>1</isNotify>
                    <isCommentDisable>1</isCommentDisable>
                    <announcementId>3000000166005</announcementId>
                    <publishDate>1542962837811</publishDate>
                    <expireDate>-1</expireDate>
                    <message>Enjoy a week-long wellness program at all our office locations.</message>
                    <isActive>true</isActive>
                    <isSticky>1</isSticky>
                    <notifyOthersEmailIds>c.spalding@zylker.com,</notifyOthersEmailIds>
                </data>
            </announcementList>
            <annLikeCnt>{}</annLikeCnt>
            <commentsCnt>{}</commentsCnt>
        </resultData>
    </result>
</response>
Copied{
    "response": {
        "result": {
            "resultData": {
                "announcementList": [
                    {
                        "owner": "3000000013255",
                        "modifiedTime": "1542962837811",
                        "subject": "Wellness Program!",
                        "isNotify": 1,                 
                        "isCommentDisable": 1,                        
                        "announcementId": "3000000166005",
                        "publishDate": "1542962837811",
                        "expireDate": -1,
                        "message": "Enjoy a week-long wellness program at all our office locations.",
                        "isActive": true,
                        "isSticky": 1,
                        "notifyOthersEmailIds": "c.spalding@zylker.com,"
                    }
                ],
                "annLikeCnt": {},
                "commentsCnt": {}
            }
        },
        "message": "Success",
        "uri": "/api/announcement/getAnnouncementByID", 
        "status": 0
    }
}