POST api/Zapier/InsertNotesForSameInsured

Insert notes against all insured having same name/phone number or email address.

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": "755eec9d-a85f-4fdd-9bd0-5e368c9e1eb7",
  "subject": "sample string 2",
  "insured_database_id": "eed975b3-11ea-4861-a15a-2db07b19de85",
  "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": "e65ab514-eb06-40d4-b537-b124420f9932",
  "hide": true,
  "policy_database_id": "587afa2d-0c5b-4121-b140-3edb93be0235",
  "policies_database_ids": [
    "df91d755-2056-49a1-8f29-7d5c103508dd",
    "418b295f-eebc-4d54-95c1-5576a24bcb1d"
  ],
  "origin": 0,
  "taskId": "a57e92cc-968d-481e-8447-46141ed65fd5",
  "is_sticky_note": true,
  "sticky_note_color": 0,
  "opportunity_database_id": "49aabf1c-e65e-4ca5-b3ef-573e9acc6781"
}

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>755eec9d-a85f-4fdd-9bd0-5e368c9e1eb7</DatabaseId>
  <Hide>true</Hide>
  <InsuredCommercialName>sample string 6</InsuredCommercialName>
  <InsuredDatabaseId>eed975b3-11ea-4861-a15a-2db07b19de85</InsuredDatabaseId>
  <InsuredEmail>sample string 3</InsuredEmail>
  <InsuredFirstName>sample string 4</InsuredFirstName>
  <InsuredLastName>sample string 5</InsuredLastName>
  <IsStickyNote>true</IsStickyNote>
  <OpportunityDatabaseId>49aabf1c-e65e-4ca5-b3ef-573e9acc6781</OpportunityDatabaseId>
  <Origin>Manual</Origin>
  <ParentNoteId>e65ab514-eb06-40d4-b537-b124420f9932</ParentNoteId>
  <PoliciesDatabaseIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>df91d755-2056-49a1-8f29-7d5c103508dd</d2p1:guid>
    <d2p1:guid>418b295f-eebc-4d54-95c1-5576a24bcb1d</d2p1:guid>
  </PoliciesDatabaseIds>
  <PolicyDatabaseId>587afa2d-0c5b-4121-b140-3edb93be0235</PolicyDatabaseId>
  <StickyNoteColor>None</StickyNoteColor>
  <Subject>sample string 2</Subject>
  <TaskId>a57e92cc-968d-481e-8447-46141ed65fd5</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>