Skip to main content
GET
Retrieve a Provider's Instruction Override
Returns the custom connection instructions you have stored for this provider — the focused read an editor loads before saving. A provider with no override answers 404. Use Retrieve a Provider Overlay, which never 404s, when you want the overlay whether or not an override exists.
A field you do not override is absent — not null, not an empty list. Absent means “keep the Yuno catalogue’s value”; present-and-empty means “replace it with nothing”.

Path Parameters

string
required
Yuno catalogue provider id in UPPER_SNAKE_CASE. Case-insensitive — normalized to upper case.

Response

string
Yuno catalogue provider id, normalized to upper case.
object[]
Connection steps replacing the catalogue’s. Each step accepts step, text, text_link, link, type, has_sub_instructions, sub_instructions_type and sub_instructions (nested up to 3 levels). text and text_link are either a plain string or a language map such as {"EN": "...", "ES": "..."}.
object[]
Grouped setup steps replacing the catalogue’s. Each group accepts title, order, instructions_type and instructions (the same step shape).
string
Documentation link replacing the catalogue’s. Always https.
string
Display name replacing the catalogue’s. Only Yuno-owned providers can carry one.
string
ISO 8601 timestamp — when the override was first written.
string
ISO 8601 timestamp — when the override was last written.
string
The dashboard user who created it. Overrides written through this API carry the all-zero sentinel, meaning “written through the API” rather than by a person in the Dashboard.
string
The dashboard user who last updated it, with the same sentinel rule as created_by.

Errors

Authorizations

PUBLIC-API-KEY
string
header
default:<Your PUBLIC-API-KEY>
required
PRIVATE-SECRET-KEY
string
header
default:<Your PRIVATE-SECRET-KEY>
required

Path Parameters

provider_id
string
required

Yuno catalogue provider id in UPPER_SNAKE_CASE. Case-insensitive; normalized to upper case.

Example:

"STRIPE"

Response

The stored override.

provider_id
string

Yuno catalogue provider id, UPPER_SNAKE_CASE.

Example:

"STRIPE"

instructions
object[]

Connection steps replacing the catalogue's.

setup_instructions
object[]

Grouped setup steps replacing the catalogue's.

more_info_url
string<uri>

Documentation link replacing the catalogue's, when overridden. Always https.

Example:

"https://docs.example.com/stripe"

name
string

Display name replacing the catalogue's, when overridden. Only Yuno-owned providers can carry one.

Example:

"Acme Risk"

created_at
string<date-time>
read-only

When the override was first written.

Example:

"2026-09-02T13:54:13Z"

updated_at
string<date-time>
read-only

When the override was last written.

Example:

"2026-09-02T13:54:13Z"

created_by
string<uuid>
read-only

The dashboard user who created it. Overrides written through this API carry the all-zero sentinel 00000000-0000-0000-0000-000000000000, meaning "written through the API" rather than by a person in the dashboard.

Example:

"00000000-0000-0000-0000-000000000000"

updated_by
string<uuid>
read-only

The dashboard user who last updated it, with the same sentinel rule as created_by.

Example:

"00000000-0000-0000-0000-000000000000"