POST api/Zapier/InsertNote

Insert notes.

Request Information

URI Parameters

None.

Body Parameters

NoteIntegrationModel
NameDescriptionTypeAdditional information
database_id

globally unique identifier

None.

subject

string

None.

insured_database_id

globally unique identifier

None.

insured_email

string

None.

insured_first_name

string

None.

insured_last_name

string

None.

insured_commercial_name

string

None.

create_date

string

None.

creator_name

string

None.

type

string

None.

parent_note_id

globally unique identifier

None.

hide

boolean

None.

policy_database_id

globally unique identifier

None.

policies_database_ids

Collection of globally unique identifier

None.

origin

PolicyOrigin

None.

taskId

globally unique identifier

None.

is_sticky_note

boolean

None.

sticky_note_color

StickyNoteColor

None.

opportunity_database_id

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "database_id": "221123b4-dba7-44e1-9c2b-a61dba6f06a7",
  "subject": "sample string 2",
  "insured_database_id": "5797bd40-fa85-439b-81fc-318da7d3ac12",
  "insured_email": "sample string 3",
  "insured_first_name": "sample string 4",
  "insured_last_name": "sample string 5",
  "insured_commercial_name": "sample string 6",
  "create_date": "sample string 7",
  "creator_name": "sample string 8",
  "type": "sample string 9",
  "parent_note_id": "911139c2-a4aa-4dfa-a120-7ed13ea6dfc9",
  "hide": true,
  "policy_database_id": "e6c7e682-e707-48ad-b205-4c8f66f8f7cd",
  "policies_database_ids": [
    "9e228c1b-6cff-4cde-b507-c1ce2ab5480c",
    "aa937134-de8d-46be-bd8c-be4119c0aa13"
  ],
  "origin": 0,
  "taskId": "b6cdef85-5455-477b-be45-6fc94fd8bd7c",
  "is_sticky_note": true,
  "sticky_note_color": 0,
  "opportunity_database_id": "d942574d-e4ac-4cda-9e20-e5d8b8a6ac5c"
}

application/xml, text/xml

Sample:
<NoteIntegrationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations">
  <CreateDate>sample string 7</CreateDate>
  <CreatorName>sample string 8</CreatorName>
  <DatabaseId>221123b4-dba7-44e1-9c2b-a61dba6f06a7</DatabaseId>
  <Hide>true</Hide>
  <InsuredCommercialName>sample string 6</InsuredCommercialName>
  <InsuredDatabaseId>5797bd40-fa85-439b-81fc-318da7d3ac12</InsuredDatabaseId>
  <InsuredEmail>sample string 3</InsuredEmail>
  <InsuredFirstName>sample string 4</InsuredFirstName>
  <InsuredLastName>sample string 5</InsuredLastName>
  <IsStickyNote>true</IsStickyNote>
  <OpportunityDatabaseId>d942574d-e4ac-4cda-9e20-e5d8b8a6ac5c</OpportunityDatabaseId>
  <Origin>Manual</Origin>
  <ParentNoteId>911139c2-a4aa-4dfa-a120-7ed13ea6dfc9</ParentNoteId>
  <PoliciesDatabaseIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>9e228c1b-6cff-4cde-b507-c1ce2ab5480c</d2p1:guid>
    <d2p1:guid>aa937134-de8d-46be-bd8c-be4119c0aa13</d2p1:guid>
  </PoliciesDatabaseIds>
  <PolicyDatabaseId>e6c7e682-e707-48ad-b205-4c8f66f8f7cd</PolicyDatabaseId>
  <StickyNoteColor>None</StickyNoteColor>
  <Subject>sample string 2</Subject>
  <TaskId>b6cdef85-5455-477b-be45-6fc94fd8bd7c</TaskId>
  <Type>sample string 9</Type>
</NoteIntegrationModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

NowCertsApiResult
NameDescriptionTypeAdditional information
Status

ApiStatus

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 0,
  "message": "sample string 1"
}

application/xml, text/xml

Sample:
<NowCertsApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum">
  <Message>sample string 1</Message>
  <Status>Error</Status>
</NowCertsApiResult>