# Delete profile

URL: https://docs.emergingtravel.com/docs/b2b-api/profiles/delete-profile/

Tags: b2b

---


```
https://api.worldota.net/api/b2b/v3/profiles/delete/
```

The call deletes a contract profile.

## Request example

```shell
curl --user '<KEY_ID>:<API_KEY>' 'https://api.worldota.net/api/b2b/v3/profiles/delete/' \
--header 'Content-Type: application/json' \
--data-raw '{
  "email": "john.smith@example.com"
}'
```

## Request body



- **email** *(String, required)*

  <p>The profile email address.</p>





## Response example

```json
{
  "data":null,
  "debug":null,
  "error":null,
  "status":"ok"
}
```

## Errors

The `error` field has the value specified in the headers below.

### `users_profile_not_found`

The profile isn’t found.

### `delete_users_profile_error`

An unknown error. To eliminate the error, contact the API support team.
