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 events by search criteria
object (Filter the event) | |||||||||||
| |||||||||||
Array of objects (SortCriteria) | |||||||||||
Array
| |||||||||||
object (PaginationRequest) Pagination request information | |||||||||||
|
Array of objects (Event) POST Event Search | |||||||||||||||||||||
Array
| |||||||||||||||||||||
object (Pagination) Pagination response information | |||||||||||||||||||||
|
{- "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
}
}
{- "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"
}
}