POST api/Zapier/RemoveInsuredTags
This method is used to remove tags from insured/prospect.
Request Information
URI Parameters
None.
Body Parameters
InsuredTagsModelName | 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": "764341ed-45fd-46f2-8425-44b0a54d229b", "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>764341ed-45fd-46f2-8425-44b0a54d229b</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
NowCertsApiResultName | 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>