extension/dashboard/announcement/get
POST
/extension/dashboard/announcement/getThis returns the list of announcements available for the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
Page number of the results.
The key for the ordering of the results. Accepts "name", "date_added"
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
Returns only if there is an error.
The total number of results available if there is no error.
The list of announcements available if there is no error.
The announcement ID.
The user ID.
The username of the user.
The title.
The short description.
The description.
Indicates whether this opens a popup.
The date time the announcement was created.
{
"error": [
"string"
],
"total": 0,
"announcements": [
{
"announcement_id": 0,
"user_id": 0,
"user": "string",
"title": "string",
"short_description": "string",
"description": "string",
"popup": true,
"date_added": "string"
}
]
}