Notifications API (2.0.1)
Download OpenAPI specification:Download
The notifications API will return email notifications for different categories, such as orders, IBX maintenance announcements, incidents and advisories. Please check the Category, Type, and ProductType schemas for the allowed lists of values to perform a search request.
Search notification
Search events by search criteria
Authorizations:
Request Body schema: application/json
object (Filter the event) | |||||||||||
| |||||||||||
Array of objects (SortCriteria) | |||||||||||
Array
| |||||||||||
object (PaginationRequest) Pagination request information | |||||||||||
|
Responses
Response Schema: application/json
Array of objects (Event) POST Event Search | |||||||||||||||||||||
Array
| |||||||||||||||||||||
object (Pagination) Pagination response information | |||||||||||||||||||||
|
Request samples
- Payload
{- "filter": {
- "category": [
- "GENERAL"
], - "type": [
- "ORDERS"
], - "notificationNumber": [
- "1-123894189299"
], - "accountNumber": [
- "596697"
], - "createdDateTime": [
- "2024-01-31T16:00:00.000Z"
]
}, - "sort": [
- {
- "direction": "DESC",
- "property": "createdDateTime"
}
], - "pagination": {
- "offset": 0,
- "limit": 25
}
}
Response samples
- 200
- 400
- 403
- 500
{- "data": [
- {
- "notificationNumber": "1-123894189299",
- "category": "GENERAL",
- "type": "ORDERS",
- "productTypes": [
- "SMART_HANDS"
], - "ibxs": [
- "LD8"
], - "createdDateTime": "2017-11-28T17:41:56.218Z",
- "summary": "Your Equinix Order # 1-204456332435 – Expired/Canceled order lines",
- "status": "RESOLVED",
- "contacts": [
- {
- "type": "NOTIFICATION",
- "firstName": "John",
- "lastName": "Doe",
- "details": [
- {
- "type": "EMAIL",
- "value": "johndoe@acme.com"
}
]
}
], - "additionalInfo": [
- {
- "key": "START_DATETIME",
- "value": "2017-11-28T17:41:56.218013Z"
}
]
}
], - "pagination": {
- "offset": 0,
- "limit": 25,
- "total": 0,
- "next": "20",
- "previous": "30"
}
}