POST api/Rolodex/Insert
Insert/Update rolodex records.
Request Information
URI Parameters
None.
Body Parameters
Rolodex| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| ContactId | globally unique identifier |
Required |
|
| AgentPortal | string |
Required |
|
| Username | string |
Required |
|
| Password | string |
Required |
|
| AgencyCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"databaseId": "72ce821b-9898-43cc-ac7d-7f8c7c53ed8f",
"contactId": "6cc17b2b-0ffb-40a9-becc-9c537db4fe80",
"agentPortal": "sample string 3",
"username": "sample string 4",
"password": "sample string 5",
"agencyCode": "sample string 6"
}
application/xml, text/xml
Sample:
<Rolodex xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum.Rolodex"> <AgencyCode>sample string 6</AgencyCode> <AgentPortal>sample string 3</AgentPortal> <ContactId>6cc17b2b-0ffb-40a9-becc-9c537db4fe80</ContactId> <DatabaseId>72ce821b-9898-43cc-ac7d-7f8c7c53ed8f</DatabaseId> <Password>sample string 5</Password> <Username>sample string 4</Username> </Rolodex>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NowCertsApiResultWithDatabaseId| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| Status | ApiStatus |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"databaseId": "37614e20-2722-4ad8-ba08-0c9c962f873c",
"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>37614e20-2722-4ad8-ba08-0c9c962f873c</DatabaseId> </NowCertsApiResultWithDatabaseId>