Returns the schema you need to fill in to create a connection for a given provider.
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.Documentation Index
Fetch the complete documentation index at: https://docs.y.uno/llms.txt
Use this file to discover all available pages before exploring further.
STRIPE, ADYEN, CYBERSOURCE, …). Case-sensitive, UPPER_SNAKE_CASE.payment_methods[] on Create a Connection.| 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. |
| 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. |
"ADYEN"