Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ When using SignalWire REST APIs, some errors will include error codes. Below, yo
- This number is already verified.
</APIField>

<APIField name="address_has_no_valid_channels" type="Error">

- The address has no valid channels.
</APIField>

<APIField name="alphanumeric_required" type="Error">

- This value must be alphanumeric.
Expand All @@ -39,6 +44,16 @@ When using SignalWire REST APIs, some errors will include error codes. Below, yo
- Auto top-up is not active on this account.
</APIField>

<APIField name="authblock_is_invalid" type="Error">

- The authblock is invalid or doesn't reference an existing subscriber.
</APIField>

<APIField name="authblock_is_expired" type="Error">

- The expires_at timestamp of the subscriber from the authblock has passed.
</APIField>

<APIField name="boolean_required" type="Error">

- This value **must** be a true or false boolean.
Expand Down Expand Up @@ -139,6 +154,11 @@ When using SignalWire REST APIs, some errors will include error codes. Below, yo
- The file size is too big.
</APIField>

<APIField name="from_fabric_address_id_does_not_match_subscriber" type="Error">

- The provided from_fabric_address_id does not match an address for the provided subscriber.
</APIField>

<APIField name="http_url_required" type="Error">

- This value must be an HTTP or HTTPS URL.
Expand Down Expand Up @@ -259,11 +279,21 @@ When using SignalWire REST APIs, some errors will include error codes. Below, yo
- This list contains an invalid entry.
</APIField>

<APIField name="invalid_pstn_destination" type="Error">

- The PSTN destination is either missing or not in E164 format.
</APIField>

<APIField name="invalid_resource_type" type="Error">

- The passed resource type is not a valid resource type
</APIField>

<APIField name="invalid_sip_destination" type="Error">

- The SIP destination is either missing or could not be parsed.
</APIField>

<APIField name="invalid_state" type="Error">

- The object is not in the correct state for this action.
Expand Down Expand Up @@ -396,7 +426,7 @@ When using SignalWire REST APIs, some errors will include error codes. Below, yo

<APIField name="not_routable" type="Error">

- The call is not routable.
- Unable to locate a route to the destination number. Please check geographic permissions and the destination number, and contact Support if issues persist.
</APIField>

<APIField name="not_valid_for_caller_id" type="Error">
Expand Down Expand Up @@ -504,6 +534,21 @@ When using SignalWire REST APIs, some errors will include error codes. Below, yo
- This number must be from an allowed region.
</APIField>

<APIField name="uri_does_not_resolve_to_address" type="Error">

- The provided URI does not resolve to a recognized address.
</APIField>

<APIField name="uri_does_not_resolve_to_resource" type="Error">

- The provided URI does not resolve to a valid resource.
</APIField>

<APIField name="uri_resolves_to_unsupported_resource" type="Error">

- The provided URI resolves to a resource that is unsupported for dialing.
</APIField>

<APIField name="upload_error" type="Error">

- There was an error while uploading the file. Please try again.
Expand Down