Skip to main content

Delete Profile

Route

/v2/streaming/profiles/{id}

Description

Remove a streaming profile from the system. This operation is irreversible and will permanently delete the profile configuration.

Method

DELETE

Inputs

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the profile to delete

Output

FieldTypeDescription
errorsarray[Error]Any errors encountered during deletion

Rate Limit

  • 60 requests per minute per API key
  • 5 concurrent requests per endpoint

Example Response

{
"errors": []
}

Error Response

{
"errors": [
{
"code": 404,
"message": "Profile not found"
}
]
}