Account Note

Notes related to accounts

createdAt
string or null <date-time>

The date and time the account note was created.

message
string or null <= 65535 characters

The text content of this account note.

noteType
string or null <= 255 characters

The context of this account note, one of {note,call,coffee,beer,meeting}.

opportunityAssociationRule
string or null <= 255 characters

The rule used to associate the account note with an opportunity, one of {recent_created,recent_updated}.

pinned
boolean or null

A boolean value indicating whether this account note is pinned.

{
  • "createdAt": "2019-08-24T14:15:22Z",
  • "message": "string",
  • "noteType": "string",
  • "opportunityAssociationRule": "string",
  • "pinned": true
}

Account Note Relationships

object

The account this account note is related to. You can use only the attribute id to filter accountNotes by account (e.g. filter[account][id]=X).

object

The creator of the account note. Relationship creator cannot be used as a filter.

object

The opportunity this account note is related to. Relationship opportunity cannot be used as a filter.

{
  • "account": {},
  • "creator": {},
  • "opportunity": {}
}

⌵ Account Note Actions

Get a Collection of Account Notes

SecuritybearerAuth
Responses
200

OK

422

JSON error message

get/accountNotes
Request samples
Response samples
application/vnd.api+json
{
  • "data": [
    ]
}

Create a New Account Note

SecuritybearerAuth
Request
Request Body schema: application/vnd.api+json
required
object
Responses
201

Created

422

JSON error message

post/accountNotes
Request samples
application/vnd.api+json
{
  • "data": {
    }
}
Response samples
application/vnd.api+json
{
  • "data": {
    }
}

Delete an Existing Account Note by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
204

Deleted

422

JSON error message

delete/accountNotes/{id}
Request samples
Response samples
application/vnd.api+json
{
  • "errors": [
    ]
}

Get an Account Note by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
200

OK

404

Not Found

get/accountNotes/{id}
Request samples
Response samples
application/vnd.api+json
{
  • "data": {
    }
}

Update an Account Note

SecuritybearerAuth
Request
path Parameters
id
required
integer
Request Body schema: application/vnd.api+json
required
object
Responses
200

OK

422

JSON error message

patch/accountNotes/{id}
Request samples
application/vnd.api+json
{
  • "data": {
    }
}
Response samples
application/vnd.api+json
{
  • "data": {
    }
}