POST api/Zapier/InsertServiceRequestsRemoveDriver

Insert service request remove driver.

Request Information

URI Parameters

None.

Body Parameters

ServiceRequestsRemoveDriverModel
NameDescriptionTypeAdditional information
driver_name_to_remove

string

Required

due_date

string

None.

description

string

None.

status

string

None.

insured_id

globally unique identifier

None.

insured_name

string

None.

insured_email

string

None.

insured_phone

string

None.

policy_number

string

None.

stage

string

None.

custom_type

string

None.

request_database_id

globally unique identifier

None.

policy_database_id

Collection of globally unique identifier

None.

agent_database_id

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "driver_name_to_remove": "sample string 1",
  "due_date": "sample string 2",
  "description": "sample string 3",
  "status": "sample string 4",
  "insured_id": "6a95fb1e-88ed-436e-b422-60f0d84ce351",
  "insured_name": "sample string 5",
  "insured_email": "sample string 6",
  "insured_phone": "sample string 7",
  "policy_number": "sample string 8",
  "stage": "sample string 9",
  "custom_type": "sample string 10",
  "request_database_id": "a49e3f4e-d27d-4f04-8082-30e5a8929989",
  "policy_database_id": [
    "52349f93-bf6f-48fc-a99d-fed9c545264a",
    "024e1e6b-07b6-4ac1-a4e5-c9bbff94cf56"
  ],
  "agent_database_id": [
    "5347c142-d615-449b-bc6f-6bc317968dd4",
    "6f5b3b96-cae3-4f34-a0f2-5682261a1c4b"
  ]
}

application/xml, text/xml

Sample:
<ServiceRequestsRemoveDriverModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Models">
  <AgentDatabaseId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">
    <d2p1:guid>5347c142-d615-449b-bc6f-6bc317968dd4</d2p1:guid>
    <d2p1:guid>6f5b3b96-cae3-4f34-a0f2-5682261a1c4b</d2p1:guid>
  </AgentDatabaseId>
  <CustomType xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">sample string 10</CustomType>
  <Description xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">sample string 3</Description>
  <InsuredEmail xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">sample string 6</InsuredEmail>
  <InsuredId xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">6a95fb1e-88ed-436e-b422-60f0d84ce351</InsuredId>
  <InsuredName xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">sample string 5</InsuredName>
  <InsuredPhone xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">sample string 7</InsuredPhone>
  <PolicyDatabaseId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">
    <d2p1:guid>52349f93-bf6f-48fc-a99d-fed9c545264a</d2p1:guid>
    <d2p1:guid>024e1e6b-07b6-4ac1-a4e5-c9bbff94cf56</d2p1:guid>
  </PolicyDatabaseId>
  <PolicyNumber xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">sample string 8</PolicyNumber>
  <RequestDatabaseId xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">a49e3f4e-d27d-4f04-8082-30e5a8929989</RequestDatabaseId>
  <Stage xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">sample string 9</Stage>
  <Status xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Contracts">sample string 4</Status>
  <DriverNameToRemove>sample string 1</DriverNameToRemove>
  <DueDate>sample string 2</DueDate>
</ServiceRequestsRemoveDriverModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

NowCertsApiResultWithDatabaseId
NameDescriptionTypeAdditional information
DatabaseId

globally unique identifier

None.

Status

ApiStatus

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "databaseId": "1bbda170-4b93-4ec3-84cd-468575250efc",
  "status": 0,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<NowCertsApiResultWithDatabaseId xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum">
  <Message>sample string 2</Message>
  <Status>Error</Status>
  <DatabaseId>1bbda170-4b93-4ec3-84cd-468575250efc</DatabaseId>
</NowCertsApiResultWithDatabaseId>