v33

latestOpenAPI 3.0.2raw.githubusercontent.com2026-03-142353151.8 KB
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

distinct_idstring[] required

Enter the distinct_id of all user profiles that you wish to delete.

Example request

{
  "distinct_id": [
    "U00001",
    "U00002"
  ]
}

Response

Profile deleted successfully

_messagestring required
statusstring required

Example response

{
  "_message": "1 User(s) deleted successfully",
  "status": "ok"
}