menu
Remove a user
Removes a team member from the account or rescinds a pending invitation, keyed by email. Users cannot remove themselves.
Endpoint
DELETE https://api.sendstreak.com/v2/accounts/{accountId}/users/{email}
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
accountId | string | The account the request is scoped to. |
email | string (email) |
Response
Removed.
Errors
| Status | Description |
|---|---|
400 | The request body or parameters failed validation. |
401 | Missing or invalid token, or the token is not authorized for this account/user. |
See Errors and rate limits for what error responses look like.
Curl example
curl --location --request DELETE 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/users/YOUR_EMAIL' \
--header 'Authorization: Bearer YOUR_API_TOKEN'