Highlights

APIs for adding highlights on accounts.

Create an account highlight

post

Creates a new highlight on an account.

Rate limit: 10 requests per minute

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
chevron-right
200Success
application/json
request_idstringOptional
post
/accounts/{account_id}/highlights

Update an account highlight

patch

Updates an existing account highlight. Only provided fields are modified.

Rate limit: 20 requests per minute

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
chevron-right
200Success
application/json
request_idstringOptional
patch
/accounts/{account_id}/highlights/{highlight_id}

Delete an account highlight

delete

Permanently deletes an account highlight by ID.

Rate limit: 20 requests per minute

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
chevron-right
200Success
application/json
delete
/accounts/{account_id}/highlights/{highlight_id}

Last updated

Was this helpful?