Skip to content

Commit 23ec60d

Browse files
max-korontombing
andauthored
DOC-1327/card-issuing-physical-card-renewal-specify-how-partners-can-obtain-the (#496)
* DOC-1327/card-issuing-physical-card-renewal-specify-how-partners-can-obtain-the * Update docs/topics/cards/physical/guide-renew.mdx * Apply suggestions from code review Co-authored-by: ntombing <mantombingoloyi@gmail.com> --------- Co-authored-by: ntombing <mantombingoloyi@gmail.com>
1 parent daabc1a commit 23ec60d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docs/topics/cards/physical/guide-renew.mdx

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,33 @@ If you're subscribed to the `Card.Updated` [webhook](/developers/using-api/webho
1616
1. Verify the new physical card delivery address with the cardholder.
1717
:::
1818

19+
:::info Original delivery address
20+
While the physical card is in `ToRenew` status, you can query the original delivery address to display to cardholders for verification.
21+
22+
<details>
23+
<summary>Query original delivery address</summary>
24+
```graphql
25+
query PhysicalCardAddress {
26+
card(cardId: "$YOUR_CARD_ID") {
27+
physicalCard {
28+
statusInfo {
29+
... on PhysicalCardToRenewStatusInfo {
30+
address {
31+
addressLine1
32+
city
33+
postalCode
34+
country
35+
}
36+
}
37+
}
38+
}
39+
}
40+
}
41+
```
42+
43+
</details>
44+
:::
45+
1946
## Guide {#guide}
2047

2148
1. Call the `confirmPhysicalCardRenewal` mutation.

0 commit comments

Comments
 (0)