Get Provider Catalog
Connections
Get Provider Catalog
Returns the schema you need to fill in to create a connection for a given provider.
GET
Get Provider Catalog
Returns the schema you need to fill in to create a connection for a given provider: which payment methods the provider supports, and the recursive list of parameters (credentials, toggles, choices) the provider requires.
This is the discovery endpoint — call it first to find out what a provider expects, then use its response as the input to Create a Connection.
This endpoint is provider-scoped, not connection-scoped. It returns a schema, not your existing connections.
Path Parameters
Yuno provider identifier (
STRIPE, ADYEN, CYBERSOURCE, …). Case-sensitive, UPPER_SNAKE_CASE.Response
The Yuno payment-method enums this provider supports. Pass any of these values into
payment_methods[] on Create a Connection.Recursive parameter schema.
How to read a node
| What you see | What it means |
|---|---|
field_type: "string", no options[] | Free-form text input. |
field_type: "string", secret: true | Password / API key — write-only. Returned as "***" on GET. |
field_type: "string", options[] present | Single-choice enum. The value you submit must be one of options[]. |
field_type: "string", options[] present, allow_custom: true | Combobox. Submit one of options[] or a free-form value. |
field_type: "boolean" | Toggle. Setting it to true activates nested params[] and makes their optional: false children required. |
field_type: "array", options[] present | Multi-select. Submit a JSON array whose elements are a subset of options[]. |
field_type: "array", no options[] | Free-form list of strings. |
Errors
| HTTP | code | When |
|---|---|---|
404 | PROVIDER_NOT_FOUND | The provider_id is not in Yuno’s provider catalog. |
403 | INSUFFICIENT_SCOPE | Your API key is missing the connections:read scope. |
Authorizations
Path Parameters
Example:
"ADYEN"