POST api/Zapier/InsertNote
Insert notes.
Request Information
URI Parameters
None.
Body Parameters
NoteIntegrationModel| Name | Description | Type | Additional 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": "1f9476a1-2473-4a1a-8a03-66daa97bd51c",
"subject": "sample string 2",
"insured_database_id": "d19e1e1a-06a4-4e1f-8ebb-4e7b1fb63871",
"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": "8195ebec-36e6-4382-b3a9-e25ef17e73fd",
"hide": true,
"policy_database_id": "f1c79940-a226-4ed8-8e0a-5d3be7b0605d",
"policies_database_ids": [
"d4f2e290-cdb3-4443-81b8-39cf05903709",
"1026bcb2-f8b5-455f-b309-c7f4b6239f54"
],
"origin": 0,
"taskId": "1f2fe4f0-ac2d-47d4-92f5-b77c3ae88c17",
"is_sticky_note": true,
"sticky_note_color": 0,
"opportunity_database_id": "e5506bb2-7c76-4f89-baae-ab47fdebdcdc"
}
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>1f9476a1-2473-4a1a-8a03-66daa97bd51c</DatabaseId>
<Hide>true</Hide>
<InsuredCommercialName>sample string 6</InsuredCommercialName>
<InsuredDatabaseId>d19e1e1a-06a4-4e1f-8ebb-4e7b1fb63871</InsuredDatabaseId>
<InsuredEmail>sample string 3</InsuredEmail>
<InsuredFirstName>sample string 4</InsuredFirstName>
<InsuredLastName>sample string 5</InsuredLastName>
<IsStickyNote>true</IsStickyNote>
<OpportunityDatabaseId>e5506bb2-7c76-4f89-baae-ab47fdebdcdc</OpportunityDatabaseId>
<Origin>Manual</Origin>
<ParentNoteId>8195ebec-36e6-4382-b3a9-e25ef17e73fd</ParentNoteId>
<PoliciesDatabaseIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>d4f2e290-cdb3-4443-81b8-39cf05903709</d2p1:guid>
<d2p1:guid>1026bcb2-f8b5-455f-b309-c7f4b6239f54</d2p1:guid>
</PoliciesDatabaseIds>
<PolicyDatabaseId>f1c79940-a226-4ed8-8e0a-5d3be7b0605d</PolicyDatabaseId>
<StickyNoteColor>None</StickyNoteColor>
<Subject>sample string 2</Subject>
<TaskId>1f2fe4f0-ac2d-47d4-92f5-b77c3ae88c17</TaskId>
<Type>sample string 9</Type>
</NoteIntegrationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NowCertsApiResult| Name | Description | Type | Additional 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>