Highlights

APIs for adding highlights on accounts.

Creates a new account highlight.

post

The {account_id} parameter accepts either:

Internal account ID (UUID format)

External ID (any string format)

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
account_idstringRequired

The ID or external ID of the account that the highlight belongs to.

Body
content_htmlstringRequired

The HTML content for this highlight.

expires_atstringOptional

Optional RFC3339 timestamp of when this highlight will expire.

Responses
200Success
application/json
post
/accounts/{account_id}/highlights

Updates an account highlight.

patch

The {account_id} parameter accepts either:

Internal account ID (UUID format)

External ID (any string format)

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
highlight_idstringRequired

The ID of the highlight to update.

account_idstringRequired

The ID or external ID of the account that the highlight belongs to.

Body
content_htmlstringOptional

The updated HTML content for this highlight.

expires_atstringOptional

The updated expires at timestamp (RFC3339).

Responses
200Success
application/json
patch
/accounts/{account_id}/highlights/{highlight_id}

Deletes an account highlight.

delete

The {account_id} parameter accepts either:

Internal account ID (UUID format)

External ID (any string format)

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
account_idstringRequired

The ID or external ID of the account that the highlight belongs to.

highlight_idstringRequired

The ID of the highlight to delete.

Responses
200Success
application/json
delete
/accounts/{account_id}/highlights/{highlight_id}

Last updated

Was this helpful?