Manage User Profiles
Delete user profile
This API enables you to delete existing user profiles by using distinct_id.
post/{WSID}/{version}/profiles/delete
Path parameters
WSIDstring required
Enter your workspace ID. You can obtain this value from the API Keys page within your Fyno account.
version'live' | 'test' required
Specify the version for which you would like to manage the user profile.
Request body
Example request
{
"distinct_id": [
"U00001",
"U00002"
]
}Response
Profile deleted successfully
Example response
{
"_message": "1 User(s) deleted successfully",
"status": "ok"
}