Update Portfolio Details

This endpoint allows you to update Portfolio details such as Name, email recipients, language and subject line.

SecuritybearerToken
Request
path Parameters
portfolioId
required
number

The unique identifier of the portfolio, obtained from /portfolios.

Request Body schema: application/json
required
name
required
string

The name of the portfolio

isDefault
boolean

Change the setting of the portfolio as default for company monitoring events.

Changing the default portfolio will automatically change the status of the previous default to 'false'.

Array of objects (Connect.Monitoring.UpdatePortfolioRequestEmail)

The email addresses of the user to receive the email notification.

emailSubject
string

The subject of the email notification.

emailLanguage
string

The language of the email notification.

frequency
string

For emails to be activated you must submit a value of '1'

Responses
204

No Content

400
401
404
patch/monitoring/portfolios/{portfolioId}
Request samples
application/json
{
  • "name": "New portfolio Name",
  • "emails": [
    ],
  • "frequency": "1"
}
Response samples
application/json
{
  • "message": "string"
}