Skip to main content
Every SDK method returns an ApiResponse<T>. The SDK does not throw on API failures. Check status before you use data. On success, data holds the resource. On failure, status and message describe what went wrong. error holds structured Core error details when available. data may hold Core’s raw error JSON or be null.
Do not wrap SDK calls in try/catch for API failures. Only BlnkInit throws when baseUrl is missing.

Parse the response

Read the envelope first. Use status to classify the failure, then read the field that carries detail for that type.

How to handle errors

1

Check status

Confirm success before you use data. On every call, check that status is in the 2xx range for the method you called.
Error handling
2

Read the error detail

Use the field that matches the failure type:
  • Core rejection (status is a Core HTTP error and data is set): read response.error?.code for the code Core returned.
  • SDK validation (status === 400 and data is null): read response.message and fix the payload before retrying.
Route on response.status when you do not need code-level logic (401, 404, 409, 5xx).
3

Configure transport handling

When the SDK cannot reach Core or the request times out, you get status: 500 and data: null.Configure timeout and logging in your SDK client to investigate these failures.

Core errors

When Core rejects a request, the SDK wraps the failure in an ApiResponse. It sets status to Core’s HTTP status, message to the error message, data to Core’s JSON error body, and error to structured details parsed from error_detail. On Core 0.15.0 and later, a rejected request looks like this:
404 Not Found
Read the failure from response.error?.code. Use response.status to choose a broad response. Treat response.error?.message as display text; Core may change wording between releases. On older Core versions, response.error?.code may be UNKNOWN.
Do not match exact error strings in application logic. Message text can change. Prefer response.error?.code for routing and response.error?.message for user-facing messages only. See the 0.15.0 migration guide and API error codes.

Client-side validation

Some methods validate input before sending a request. When validation fails, Core never receives the call.
Each Core API lists required fields for that call.

Transport failures

When the SDK cannot reach Core or the request times out, you get status: 500, data: null, and a message describing the failure. Configure timeout and logging in Using the SDK. When debugging transport failures, log status, message, and the endpoint you called.

Need help?

We are very happy to help you make the most of Blnk, regardless of whether it is your first time or you are switching from another tool. To ask questions or discuss issues, please contact us or join our Discord community.