menu
Get an account
Returns a single account (workspace): its name and current webhook configuration. The webhook signing secret is masked - secrets are write-only across the v2 API.
Endpoint
GET https://api.sendstreak.com/v2/accounts/{accountId}
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
accountId | string | The account the request is scoped to. |
Response
The account. The webhook signing secret is masked.
{
"_id": "665f0a2b1c9d440012ab34cd",
"name": "Example name",
"webhooks": {
"authType": "basic",
"events": [
"message_bounced"
],
"passwordOrToken": "webhook-bearer-token",
"signingSecret": "whsec_9f8e7d6c5b4a39281706",
"url": "https://example.com/webhooks/sendstreak",
"username": "smtp-user"
}
}
Errors
| Status | Description |
|---|---|
401 | Missing or invalid token, or the token is not authorized for this account/user. |
404 | The requested resource does not exist. |
See Errors and rate limits for what error responses look like.
Curl example
curl --location --request GET 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID' \
--header 'Authorization: Bearer YOUR_API_TOKEN'