POST api/Zapier/RemoveInsuredTags
This method is used to remove tags from insured/prospect.
Request Information
URI Parameters
None.
Body Parameters
InsuredTagsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| 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. |
|
| tag_names | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"insured_database_id": "ed62a785-94e0-4f8a-ba36-0c7552a299fa",
"insured_email": "sample string 1",
"insured_first_name": "sample string 2",
"insured_last_name": "sample string 3",
"insured_commercial_name": "sample string 4",
"tag_names": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<InsuredTagsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Models">
<InsuredCommercialName>sample string 4</InsuredCommercialName>
<InsuredDatabaseId>ed62a785-94e0-4f8a-ba36-0c7552a299fa</InsuredDatabaseId>
<InsuredEmail>sample string 1</InsuredEmail>
<InsuredFirstName>sample string 2</InsuredFirstName>
<InsuredLastName>sample string 3</InsuredLastName>
<TagNames xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</TagNames>
</InsuredTagsModel>
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>