Skip to main content
GET
/
routing
/
{routing_id}
Retrieve a Routing
curl --request GET \
  --url https://api-sandbox.y.uno/v1/routing/{routing_id} \
  --header 'PRIVATE-SECRET-KEY: <api-key>' \
  --header 'PUBLIC-API-KEY: <api-key>'
{
  "id": "r_8f2c1d3e-4b5a-6c7d-8e9f-0a1b2c3d4e5f",
  "account_code": "acc-uuid",
  "payment_method": "CARD",
  "name": "Card routing — Stripe primary, Adyen fallback",
  "default_route": {
    "steps": [
      {
        "index": 1,
        "provider_id": "STRIPE",
        "connection_id": "f1a3c4d5-..."
      }
    ]
  },
  "condition_sets": [
    {
      "sort_number": 1,
      "name": "High Value US",
      "conditions": [
        {}
      ],
      "route": {}
    }
  ],
  "created_at": "2026-05-12T14:30:00Z",
  "updated_at": "2026-05-12T14:30:00Z"
}

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.

Returns the routing’s current live configuration.

Path Parameters

routing_id
string
required
The id returned by Create a Routing. Must belong to the account your API key is scoped to.

Response

id
string
Unique identifier for the routing.
account_code
string
Unique code for the account.
payment_method
enum
The payment method this routing applies to (e.g., CARD).
name
string
Label for the routing.
default_route
object
The default routing logic.
condition_sets
object[]
Optional conditional logic.
created_at
string
ISO 8601 timestamp.
updated_at
string
ISO 8601 timestamp.
warnings
string[]
Optional list of non-blocking orchestration warnings (e.g., MONITOR_REDISTRIBUTION_DEFERRED).
curl -X GET 'https://api.y.uno/v1/routing/r_8f2c1d3e-4b5a-6c7d-8e9f-0a1b2c3d4e5f' \
  -H 'public-api-key: <YOUR_PUBLIC_KEY>' \
  -H 'private-secret-key: <YOUR_SECRET_KEY>'

Errors

HTTPcodeWhen
404ROUTING_NOT_FOUNDUnknown routing_id, or id belongs to a different account.
403INSUFFICIENT_SCOPEAPI key missing routing:read.

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

routing_id
string<uuid>
required

Response

OK

id
string
Example:

"r_8f2c1d3e-4b5a-6c7d-8e9f-0a1b2c3d4e5f"

account_code
string
Example:

"acc-uuid"

payment_method
string
Example:

"CARD"

name
string
Example:

"Card routing — Stripe primary, Adyen fallback"

default_route
object
condition_sets
object[]
created_at
string<date-time>
Example:

"2026-05-12T14:30:00Z"

updated_at
string<date-time>
Example:

"2026-05-12T14:30:00Z"