From 505fa5e13f97a1ea36ede1907e76cb32fd436df0 Mon Sep 17 00:00:00 2001 From: Francisco Ithurriague Date: Fri, 27 Mar 2026 14:37:38 -0300 Subject: [PATCH 1/2] feat(issuer): added issuer to payment sources response and payment source card example --- _build/api.yaml | 4 ++++ resources/customers/create_customer_payment_methods.yml | 1 + schemas/customers/customer_payment_method_card_response.yml | 3 +++ 3 files changed, 8 insertions(+) diff --git a/_build/api.yaml b/_build/api.yaml index 24705ce..35c1455 100644 --- a/_build/api.yaml +++ b/_build/api.yaml @@ -8438,6 +8438,7 @@ paths: exp_month: "01" exp_year: "25" brand: visa + issuer: santander name: random name parent_id: cus_2tUkvasdas1s4ihjs default: false @@ -17345,6 +17346,9 @@ components: brand: example: visa type: string + issuer: + example: santander + type: string name: example: Fulano Perez" type: string diff --git a/resources/customers/create_customer_payment_methods.yml b/resources/customers/create_customer_payment_methods.yml index 67eaf85..545c375 100644 --- a/resources/customers/create_customer_payment_methods.yml +++ b/resources/customers/create_customer_payment_methods.yml @@ -94,6 +94,7 @@ get: exp_month: "01" exp_year: "25" brand: "visa" + issuer: "santander" name: "random name" parent_id: "cus_2tUkvasdas1s4ihjs" default: false diff --git a/schemas/customers/customer_payment_method_card_response.yml b/schemas/customers/customer_payment_method_card_response.yml index be741ef..924d28e 100644 --- a/schemas/customers/customer_payment_method_card_response.yml +++ b/schemas/customers/customer_payment_method_card_response.yml @@ -23,6 +23,9 @@ payment_method_card_response: brand: type: string example: "visa" + issuer: + type: string + example: "santander" name: type: string example: Fulano Perez" From c71f7f85dad19ad8483d9db89058eaea9a2521b4 Mon Sep 17 00:00:00 2001 From: Francisco Ithurriague Date: Fri, 27 Mar 2026 14:56:21 -0300 Subject: [PATCH 2/2] fix(issuer): added description to card payment sources response issuer field --- _build/api.yaml | 1 + .../customers/customer_payment_method_card_response.yml | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/_build/api.yaml b/_build/api.yaml index 35c1455..25c0269 100644 --- a/_build/api.yaml +++ b/_build/api.yaml @@ -17347,6 +17347,7 @@ components: example: visa type: string issuer: + description: Name of the institution that issued the card example: santander type: string name: diff --git a/schemas/customers/customer_payment_method_card_response.yml b/schemas/customers/customer_payment_method_card_response.yml index 924d28e..4907e99 100644 --- a/schemas/customers/customer_payment_method_card_response.yml +++ b/schemas/customers/customer_payment_method_card_response.yml @@ -8,7 +8,7 @@ payment_method_card_response: last4: type: string example: "6410" - bin: + bin: type: string example: "40276657" card_type: @@ -26,7 +26,8 @@ payment_method_card_response: issuer: type: string example: "santander" - name: + description: "Name of the institution that issued the card" + name: type: string example: Fulano Perez" default: @@ -36,4 +37,4 @@ payment_method_card_response: payment_source_status: type: string example: "active" - +