From 515b78108ebfba16fc729061772ea127a491bb7d Mon Sep 17 00:00:00 2001 From: Maike Fischer Date: Tue, 17 Mar 2026 14:04:37 +0100 Subject: [PATCH 1/2] Rename "Pay to Card" to "Push to Card" across docs Co-Authored-By: Claude Opus 4.6 (1M context) --- changelog/api.mdx | 4 +-- docs.json | 8 +++--- .../introduction.mdx | 28 +++++++++---------- .../{pay-to-card => push-to-card}/support.mdx | 2 +- .../{pay-to-card => push-to-card}/testing.mdx | 6 ++-- introduction.mdx | 2 +- 6 files changed, 25 insertions(+), 25 deletions(-) rename features/{pay-to-card => push-to-card}/introduction.mdx (60%) rename features/{pay-to-card => push-to-card}/support.mdx (96%) rename features/{pay-to-card => push-to-card}/testing.mdx (88%) diff --git a/changelog/api.mdx b/changelog/api.mdx index 4359252..a999037 100644 --- a/changelog/api.mdx +++ b/changelog/api.mdx @@ -78,9 +78,9 @@ Filtering needs knowledge of the available categories. You can now fetch the ful ## New payment payout type added -To support the release of [Runa Pay to Card](https://runa.io/products/pay-to-card) a new payout type of `payment` has been added to the product catalog. This new type joins the existing types of `gift_card` and `subscription`. For `payment` type products the new `payment` key will contain specific details about the product. +To support the release of [Runa Push to Card](https://runa.io/products/push-to-card) a new payout type of `payment` has been added to the product catalog. This new type joins the existing types of `gift_card` and `subscription`. For `payment` type products the new `payment` key will contain specific details about the product. -[Runa Pay to Card](https://runa.io/products/pay-to-card) enables you to push funds to global cards and bank accounts instantly. Funds can be sent instantly to billions of users in 190 countries, powered by Visa Direct and Mastercard. Existing customers should contact their account manager for more details. +[Runa Push to Card](https://runa.io/products/push-to-card) enables you to push funds to global cards and bank accounts instantly. Funds can be sent instantly to billions of users in 190 countries, powered by Visa Direct and Mastercard. Existing customers should contact their account manager for more details. ### Updated endpoints diff --git a/docs.json b/docs.json index e413302..e495fcd 100644 --- a/docs.json +++ b/docs.json @@ -66,12 +66,12 @@ "features/merchant-selection-template", "features/embedded-fx", { - "group": "Pay to Card", + "group": "Push to Card", "icon": "boxes-stacked", "pages": [ - "features/pay-to-card/introduction", - "features/pay-to-card/testing", - "features/pay-to-card/support" + "features/push-to-card/introduction", + "features/push-to-card/testing", + "features/push-to-card/support" ] } ] diff --git a/features/pay-to-card/introduction.mdx b/features/push-to-card/introduction.mdx similarity index 60% rename from features/pay-to-card/introduction.mdx rename to features/push-to-card/introduction.mdx index 7e7fbf6..079f935 100644 --- a/features/pay-to-card/introduction.mdx +++ b/features/push-to-card/introduction.mdx @@ -1,26 +1,26 @@ --- -title: "Using Pay to Card" +title: "Using Push to Card" description: "Provide faster access to funds for your recipients by pushing funds to cards." icon: "credit-card" --- -Powered by Visa Direct and Mastercard Send, Runa Pay to Card is the fastest and simplest way to send funds directly to your recipients' bank account. +Powered by Visa Direct and Mastercard Send, Runa Push to Card is the fastest and simplest way to send funds directly to your recipients' bank account. -Pay to Card facilitates instant transfers to other accounts, powering use cases like gig worker payments, rewards, incentives, insurance claims, corporate rebates, payroll, government aid, and reimbursements. +Push to Card facilitates instant transfers to other accounts, powering use cases like gig worker payments, rewards, incentives, insurance claims, corporate rebates, payroll, government aid, and reimbursements. - To get access to Pay to Card, please reach out to your Account Manager or + To get access to Push to Card, please reach out to your Account Manager or email support@runa.io. -## Fetching the Pay to Card products +## Fetching the Push to Card products -Retrieve the Pay to Card products using the [product list endpoint](/reference/2024-02-05/endpoint/products/list). You can identify these products by the `payout_type` field, which will be set to `payment`. Each Pay to Card product supports a specific currency and country. You can refer to the [product listing guide](/features/product-catalog) for more information on this endpoint. +Retrieve the Push to Card products using the [product list endpoint](/reference/2024-02-05/endpoint/products/list). You can identify these products by the `payout_type` field, which will be set to `payment`. Each Push to Card product supports a specific currency and country. You can refer to the [product listing guide](/features/product-catalog) for more information on this endpoint. -```json title="Pay to Card product example, fields truncated for brevity" icon="file" expandable +```json title="Push to Card product example, fields truncated for brevity" icon="file" expandable { "code": "P2C-US", - "name": "Pay To Card US", + "name": "Push To Card US", "currency": "USD", "state": "LIVE", "payout_type": "payment", @@ -29,13 +29,13 @@ Retrieve the Pay to Card products using the [product list endpoint](/reference/2 } ``` -## Placing a Pay to Card order +## Placing a Push to Card order -To make an order for a payment you simply specify the Pay to Card product code for the currency and country you wish to send funds in. +To make an order for a payment you simply specify the Push to Card product code for the currency and country you wish to send funds in. For our example, we will be using the `P2C-US` product code for a $10 payment to a recipient. The payment will be sent to the recipient's email address via the `EMAIL` distribution method. -```http title="Example pay to card order" icon="globe" expandable +```http title="Example push to card order" icon="globe" expandable POST https://api.runa.io/v2/order Content-Type: application/json X-Api-Key: @@ -86,10 +86,10 @@ For a returning recipient, they will only need to enter their email address to a ## Next steps - - Test out the pay to card redemption journey in our playground environment. + + Test out the push to card redemption journey in our playground environment. - + Read through the potential failure scenarios and suggested resolution for each. diff --git a/features/pay-to-card/support.mdx b/features/push-to-card/support.mdx similarity index 96% rename from features/pay-to-card/support.mdx rename to features/push-to-card/support.mdx index db728db..58f2e4e 100644 --- a/features/pay-to-card/support.mdx +++ b/features/push-to-card/support.mdx @@ -1,6 +1,6 @@ --- title: "Support" -description: "Potential error scenarios for Pay to Card and their resolution." +description: "Potential error scenarios for Push to Card and their resolution." icon: "circle-info" --- diff --git a/features/pay-to-card/testing.mdx b/features/push-to-card/testing.mdx similarity index 88% rename from features/pay-to-card/testing.mdx rename to features/push-to-card/testing.mdx index c709872..1ce6d2d 100644 --- a/features/pay-to-card/testing.mdx +++ b/features/push-to-card/testing.mdx @@ -1,17 +1,17 @@ --- title: "Testing" -description: "Steps to simulate different pay to card redemption scenarios in playground." +description: "Steps to simulate different push to card redemption scenarios in playground." icon: "flask" --- -The Pay to Card redemption journey requires a few steps from the recipient. To test this journey in the playground environment, you can use the following steps. +The Push to Card redemption journey requires a few steps from the recipient. To test this journey in the playground environment, you can use the following steps. For testing and simulating errors during placing of the order, refer to the [playground reference section](/docs/playground). -Here's a high level summary of the Pay to Card redemption journey: +Here's a high level summary of the Push to Card redemption journey: diff --git a/introduction.mdx b/introduction.mdx index c6df134..f9faf54 100644 --- a/introduction.mdx +++ b/introduction.mdx @@ -7,7 +7,7 @@ mode: "wide" ## Runa at a glance -Runa is the infrastructure and network for global payouts – gift cards, prepaid cards, and pay-to-card – all managed from a single, unified platform. Deliver funds instantly to recipients worldwide with enterprise-grade reliability, security, and scale. +Runa is the infrastructure and network for global payouts – gift cards, prepaid cards, and push-to-card – all managed from a single, unified platform. Deliver funds instantly to recipients worldwide with enterprise-grade reliability, security, and scale. The Runa API lets you automate and embed payouts directly into your app or workflow. Whether you're sending one or one million, Runa handles the complexity so you don't have to. From 045a90660e0e1a0849f19a1f29a8d60a3f39154a Mon Sep 17 00:00:00 2001 From: Will Pimblett Date: Tue, 17 Mar 2026 16:51:09 +0000 Subject: [PATCH 2/2] =?UTF-8?q?Add=20redirects=20re.=20pay-to-card=20?= =?UTF-8?q?=E2=86=92=20push-to-card?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs.json b/docs.json index e495fcd..ffb14fe 100644 --- a/docs.json +++ b/docs.json @@ -221,6 +221,18 @@ "options": ["copy", "view", "chatgpt", "claude"] }, "redirects": [ + { + "source": "/features/pay-to-card/introduction", + "destination": "/features/push-to-card/introduction" + }, + { + "source": "/features/pay-to-card/support", + "destination": "/features/push-to-card/support" + }, + { + "source": "/features/pay-to-card/testing", + "destination": "/features/push-to-card/testing" + }, { "source": "/changelog/2023-01-16-api-version-no-longer-available", "destination": "/changelog/api#2023-01-16-api-version-end-of-life"