Uiza Documentation
2020-04-21
2020-04-21
  • Hola! 👋
  • Getting Started
    • Introduction
    • Authentication
    • Errors
    • Quick Starts
      • Live Streaming
      • Video Streaming
    • Pagination
    • Recommended Specifications
    • Postman Collections
    • Sample Streaming Apps
      • NodeJS Live Streaming App
      • Java Live Streaming App
      • Python Live Streaming App
      • How to integrate live streaming into an Android App using Uiza’s Live API
    • Versioning
  • API Reference
    • Live Entities
      • Create A Live Entity
      • Retrieve A Live Entity
      • Update A Live Entity
      • Delete A Live Entity
      • List All Live Entities
      • Enable Live Entity DVR
      • Disable Live Entity DVR
      • Reset Ingest Key
    • Live Sessions
      • Retrieve A Live Session
      • List All Live Sessions
    • Video Entities
      • Retrieve A Video Entity
      • Update A Video Entity
      • Publish A Video Entity
      • Delete A Video Entity
      • List All Video Entities
    • Video Presets
      • Create a Video Preset
      • Retrieve a Video Preset
      • Update a Video Preset
      • Delete a Video Preset
      • List all Video Presets
      • Add Profile(s) to Video Preset
      • Remove Profile(s) from Video Preset
    • Video Profiles
      • List All Video Profiles
    • Events
      • Retrieve An Event
      • List All Events
      • Event Types
    • Webhook Endpoints
      • Create Webhook Endpoint
      • Retrieve Webhook Endpoint
      • Update Webhook Endpoint
      • Delete Webhook Endpoint
      • List All Webhook Endpoints
      • Enable A Webhook Endpoint
      • Disable A Webhook Endpoint
  • SDK REFERENCE
    • Introduction
    • Android SDK
      • Android Player SDK
      • Android Broadcast SDK
    • iOS SDK
      • iOS Player SDK
      • iOS Broadcast SDK
    • Web Player SDK
  • API UPGRADES
    • Release Notes
    • API Changelog
Powered by GitBook
On this page

Was this helpful?

  1. Getting Started

Errors

This page describes the error statuses returned by the Uiza APIs

Whether an API request to Uiza is successful or not is indicated by conventional HTTP codes. In general, Uiza returns responses with equivalent status codes which are listed below.

200 - OK

The request is successful.

400 - Bad request

The request is inadequate. This is usually caused by missing required parameters or malformed syntax.

403 - Forbidden

The API key doesn't have permissions to perform the request.

404 - Not Found

The requested resource does not exist.

409 - Conflict

The request conflicts with the current state of the server. For example updating an immutable resource already present on the server.

500, 502, 503, 504 - Internal Server Error

Something went wrong on Uiza's end

Errors are returned with format containing a message and an error_type to help you pinpoint what went wrong. While you can find all the possible error messages in our API Reference, these errors are categorized by the following error_types:

Error Types

Definitions

api_connection_error

Errors that occurred during the HTTP communication.

api_error

Errors occurred internally with Uiza API.

authentication_error

The keys supplied to Uiza were either missing or invalid.

invalid_request_error

The parameters supplied to Uiza were either missing or invalid.

rate_limit_error

Too many requests were sent to Uiza too quickly.

video_error

There is something wrong with your video or live stream.

PreviousAuthenticationNextQuick Starts

Last updated 5 years ago

Was this helpful?