POST api/Zapier/RemoveInsuredTags

This method is used to remove tags from insured/prospect.

Request Information

URI Parameters

None.

Body Parameters

InsuredTagsModel
NameDescriptionTypeAdditional 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": "46478c08-f606-455c-b5f5-7b7d9cd784a6",
  "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>46478c08-f606-455c-b5f5-7b7d9cd784a6</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
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>