Get notifications
GET/notifications
This endpoint provides the platform's notifications.
Responses
- 200
- application/json
- Schema
- success
- failure
Schema
- Success Response
- ErrorResponse
- Array [
low
medium
high
market
general
new_feature
bug_fix
maintenance
settlement
- ]
accountInactive
: The Futures account the request refers to is inactiveapiLimitExceeded
: The API limit for the calling IP address has been exceededauthenticationError
: The request could not be authenticatedinsufficientFunds
: The amount requested for transfer is below the amount of funds availableinvalidAccount
: The Futures account the transfer request refers to is invalidinvalidAmount
: The amount the transfer request refers to is invalidinvalidArgument
: One or more arguments provided are invalidinvalidUnit
: The unit the transfer request refers to is invalidJson Parse Error
: The request failed to pass valid JSON as an argumentmarketUnavailable
: The market is currently unavailablenonceBelowThreshold
: The provided nonce is below the thresholdnonceDuplicate
: The provided nonce is a duplicate as it has been used in a previous requestnotFound
: The requested information could not be foundrequiredArgumentMissing
: One or more required arguments are missingServer Error
: There was an error processing the requestUnavailable
: The endpoint being called is unavailableunknownError
: An unknown error has occurred
notifications object[]
A list containing the notifications.
The time that notification is taking effect.
The notification note. A short description about the specific notification.
Possible values: [low
, medium
, high
]
The notification priorities:
If priority == "high" then it implies downtime will occur at effective_time
when type == "maintenance".
Possible values: [new_feature
, bug_fix
, settlement
, general
, maintenance
, market
]
The notification types:
If type == "maintenance" then it implies downtime will occur at effective_time
if priority == "high".
The expected downtime in minutes or absent if no downtime is expected.
Possible values: [success
]
Server time in Coordinated Universal Time (UTC)
Possible values: [accountInactive
, apiLimitExceeded
, authenticationError
, insufficientFunds
, invalidAccount
, invalidAmount
, invalidArgument
, invalidUnit
, Json Parse Error
, marketUnavailable
, nonceBelowThreshold
, nonceDuplicate
, notFound
, requiredArgumentMissing
, Server Error
, Unavailable
, unknownError
]
Possible values: [accountInactive
, apiLimitExceeded
, authenticationError
, insufficientFunds
, invalidAccount
, invalidAmount
, invalidArgument
, invalidUnit
, Json Parse Error
, marketUnavailable
, nonceBelowThreshold
, nonceDuplicate
, notFound
, requiredArgumentMissing
, Server Error
, Unavailable
, unknownError
]
Error description.
Possible values: [error
]
Server time in Coordinated Universal Time (UTC)
{
"result": "success",
"notifications": [
{
"type": "general",
"priority": "low",
"note": "We've launched a new Telegram group."
},
{
"type": "settlement",
"priority": "medium",
"note": "Week contracts with maturity 29/Jun/2018 expire and settle.",
"effectiveTime": "2018-06-29T15:00:00Z"
}
],
"serverTime": "2018-06-29T15:22:05.187Z"
}
{
"result": "error",
"serverTime": "2016-02-25T09:45:53.818Z",
"error": "apiLimitExceeded"
}