Skip to content

Workspace API

Delete a Contact

Remove your workspace's custom data for a contact with DELETE /workspace/contacts/{id}.

Endpoint
DELETE https://api.parcelengineering.com/api/v1/workspace/contacts/{id}

Removes your workspace’s custom data for the contact (your status, notes, and tags). The global Parcel contact is not affected and remains available in the Data API. The contact will no longer appear in workspace searches after deletion.

This operation is idempotent. Deleting a contact that is not in your workspace returns a success response with no error.

Delete costs 0 credits.

Path parameters

ParameterDescription
idUUID of the contact to delete from your workspace.

Example

Delete workspace contact
curl -X DELETE \
https://api.parcelengineering.com/api/v1/workspace/contacts/3c7a9f2d-0001-4e1b-bc4a-000000000001 \
-H "Authorization: Bearer pcl_your_api_key"

Response

Response
{
"data": { "deleted": true },
"metadata": { "credits": 0 }
}

Delete costs 0 credits.