Deletes a stream key alias from an application.
| Property | Value |
|---|---|
| Method | DELETE |
| URL | /api/applications/{appName}/aliases/{aliasName} |
| Content-Type | application/json |
| Authentication | Bearer Token |
| Parameter | Type | Required | Description |
|---|---|---|---|
appName |
string | Yes | Application name |
aliasName |
string | Yes | Alias key |
| Code | Description |
|---|---|
| 200 | Success - Alias deleted |
| 401 | Unauthorized - Invalid or missing token |
| 404 | Not Found - Application or alias does not exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Internal Server Error |
{
"meta": {
"executionTime": 3,
"generatedAt": 1766063661248
},
"message": "Alias has been removed"
}
| Parameter | Type | Description |
|---|---|---|
message |
string | Response status message |
| Parameter | Type | Description |
|---|---|---|
meta.executionTime |
integer | Request processing time in milliseconds |
meta.generatedAt |
integer | Response generation timestamp (Unix timestamp in ms) |
{
"message": "Alias not found"
}
| Parameter | Type | Description |
|---|---|---|
message |
string | Human-readable error message |