Skip to main content
POST
/
v6
/
notifications
/
settings
Save notification settings
curl --request POST \
  --url https://sandbox.tight.com/v6/notifications/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "financialSummaries": "EMAIL",
  "bankConnectionErrors": "SMS",
  "conversations": "OFF"
}
'
{
  "result": "SUCCESS",
  "data": {
    "financialSummaries": "EMAIL",
    "bankConnectionErrors": "SMS",
    "conversations": "OFF"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, see Authentication for more detail.

Body

application/json
financialSummaries
enum<string>

Notification preference for financial summaries

Available options:
SMS,
EMAIL,
OFF
Example:

"EMAIL"

bankConnectionErrors
enum<string>

Notification preference for bank connection errors

Available options:
SMS,
EMAIL,
OFF
Example:

"SMS"

conversations
enum<string>

Notification preference for conversations

Available options:
SMS,
EMAIL,
OFF
Example:

"OFF"

Response

Success

result
enum<string>

The result of the action performed.

Available options:
SUCCESS,
FAILURE
data
object

The data generated by the action performed.