Delete Contact
You can delete contact from here
api/Contact/Delete
Query String
Parameter | Required | Value |
---|---|---|
Request Header
Parameter | Required | Value |
---|---|---|
TokenKey | Mandatory | User Input |
Accept-Language | Optional | en-US |
Accept-Encoding | Optional | gzip |
Content-Type | Mandatory | application/json |
Request Body
Parameter | Required | Value |
---|---|---|
PWContactID | Mandatory | User Input |
LicenseUserType | Mandatory | User Input |
IsPublicContact | Mandatory | User Input |
Sample Request
[
{
"PWContactID": 123456,
"LicenseUserType": "Contact",
"IsPublicContact": false
},
{
"PWContactID": 456789,
"LicenseUserType": "FreeUser",
"IsPublicContact": false
},
{
"PWContactID": 789456,
"LicenseUserType": "LiteUser",
"IsPublicContact": false
},
]
Remarks:
- Only FreeUser (1), LiteUser (4), Contact (0) can be deleted and Contact should not be Public. IsPublicContact should be false.
Enum: UserLicenseType
0 – Contact
1 – FreeUser
2 – HostingUser
3 – CollaborativeUser
4 – LiteUser
Updated less than a minute ago