Deleting a work information
The API provides feature to delete the work information for a contact, in order to deleting a work information we need to pass the relevant contact id and Id of work information, which is based on whether we have created this work information with organization contact or contact organization, this is varied by IsOrganizationContact.
Request Information
Body Parameters
Body parameters need to be integrated as json key value collection followed by valid object notations, below if the list of parameters can be sent as request body by an integrator.
pass the workinformation to delete
Name | Description | Type | Additional information |
---|---|---|---|
JobContact |
The JobTitle and Contact-For information of this contact |
JobContact |
Required |
WorksInThisOrganization |
Indicates if the Employee/Individual is currently working with the Current Organization (i.e. the Organization that is using this API). |
boolean |
None. |
AddOrganizationAsContact |
Gets or sets a value indicating whether [add organization as contact]. |
boolean |
None. |
OrganizationName |
The Name of this Organization |
string |
None. |
IsOrganizationContact |
Gets or Sets IsOrganizationContact |
boolean |
None. |
WebsiteUrl | string |
None. |
|
Id | integer |
None. |
|
RelatedToId | integer |
None. |
|
MergedWith_Or_Secondary_Id | integer |
None. |
|
MergeType | string |
None. |
|
SortOrder | integer |
None. |
Request Format
Below is the typical object of the request, in order to use the API for various requirement, refer the documentation.
{ "JobContact": { "JobTitle": "String Parameter 1", "ContactFor": "String Parameter 2" }, "WorksInThisOrganization": true, "AddOrganizationAsContact": true, "OrganizationName": "String Parameter 4", "IsOrganizationContact": true, "WebsiteUrl": "String Parameter 6", "Id": 7, "RelatedToId": 1, "MergedWith_Or_Secondary_Id": 1, "MergeType": "String Parameter 8", "SortOrder": 1 }
Deleting a work information from organization contact
In order to delete the work information, refer the below sample:
{ JobContact: { "JobTitle": "Sr Software developer", "ContactFor": "Iqr" } , "Id":9851059, "IsOrganizationContact": true, "RelatedToId": 9831292 }
Deleting a work information without organization
In order to delete the work information, refer the below sample:
{ JobContact: { "JobTitle": "Sr Software developer", "ContactFor": "Iqr" } , "Id":9851059, "IsOrganizationContact": false, "RelatedToId": 9831292 }
Response Information
Resource Description
Wrapped result with value as True if work information is deleted
ITypedResponseOfNullableOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Result | boolean |
None. |
|
Category | string |
None. |
Response Formats
Sample not available.