You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk.json
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
}
7
7
],
8
8
"info": {
9
-
"version": "2.8.0",
9
+
"version": "2.9.0",
10
10
"title": "All Circle APIs",
11
11
"description": "Circle's General, Core Functionality, Payments, Payouts, Accounts, and Crypto Payments APIs bundled into one OpenAPI Specification."
12
12
},
@@ -1731,7 +1731,8 @@
1731
1731
"addressTag": "123456789",
1732
1732
"chain": "ALGO",
1733
1733
"currency": "USD",
1734
-
"description": "My USDC address at a cryptocurrency exchange"
1734
+
"description": "My USDC address at a cryptocurrency exchange",
1735
+
"status": "active"
1735
1736
}
1736
1737
}
1737
1738
}
@@ -1771,7 +1772,7 @@
1771
1772
}
1772
1773
],
1773
1774
"summary": "List all recipient addresses",
1774
-
"description": "Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending verification are not included in the response.\n",
1775
+
"description": "Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending administrator verification are not included in the response.\n",
1775
1776
"operationId": "listBusinessRecipientAddresses",
1776
1777
"tags": ["Addresses"],
1777
1778
"responses": {
@@ -1805,7 +1806,8 @@
1805
1806
"addressTag": "123456789",
1806
1807
"chain": "ALGO",
1807
1808
"currency": "USD",
1808
-
"description": "My USDC address at a cryptocurrency exchange"
1809
+
"description": "My USDC address at a cryptocurrency exchange",
1810
+
"status": "active"
1809
1811
}
1810
1812
]
1811
1813
}
@@ -1833,6 +1835,7 @@
1833
1835
}
1834
1836
],
1835
1837
"summary": "Delete a recipient address",
1838
+
"description": "Deletes an external blockchain address. The recipient address must be in an 'active' or 'pending' state in order to be deleted successfully.\n",
@@ -256,7 +256,7 @@ export const AddressesApiAxiosParamCreator = function (
256
256
};
257
257
},
258
258
/**
259
-
* Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending verification are not included in the response.
259
+
* Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending administrator verification are not included in the response.
260
260
* @summary List all recipient addresses
261
261
* @param {string} [from] Queries items created since the specified date-time (inclusive).
262
262
* @param {string} [to] Queries items created before the specified date-time (inclusive).
* Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending verification are not included in the response.
449
+
* Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending administrator verification are not included in the response.
450
450
* @summary List all recipient addresses
451
451
* @param {string} [from] Queries items created since the specified date-time (inclusive).
452
452
* @param {string} [to] Queries items created before the specified date-time (inclusive).
@@ -533,7 +533,7 @@ export const AddressesApiFactory = function (
533
533
.then((request)=>request(axios,basePath));
534
534
},
535
535
/**
536
-
*
536
+
* Deletes an external blockchain address. The recipient address must be in an \'active\' or \'pending\' state in order to be deleted successfully.
537
537
* @summary Delete a recipient address
538
538
* @param {string} id Universally unique identifier (UUID v4) of a resource.
@@ -561,7 +561,7 @@ export const AddressesApiFactory = function (
561
561
.then((request)=>request(axios,basePath));
562
562
},
563
563
/**
564
-
* Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending verification are not included in the response.
564
+
* Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending administrator verification are not included in the response.
565
565
* @summary List all recipient addresses
566
566
* @param {string} [from] Queries items created since the specified date-time (inclusive).
567
567
* @param {string} [to] Queries items created before the specified date-time (inclusive).
@@ -638,7 +638,7 @@ export class AddressesApi extends BaseAPI {
638
638
}
639
639
640
640
/**
641
-
*
641
+
* Deletes an external blockchain address. The recipient address must be in an \'active\' or \'pending\' state in order to be deleted successfully.
642
642
* @summary Delete a recipient address
643
643
* @param {string} id Universally unique identifier (UUID v4) of a resource.
@@ -668,7 +668,7 @@ export class AddressesApi extends BaseAPI {
668
668
}
669
669
670
670
/**
671
-
* Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending verification are not included in the response.
671
+
* Returns a list of recipient addresses that have each been verified and are eligible for transfers. Any recipient addresses pending administrator verification are not included in the response.
672
672
* @summary List all recipient addresses
673
673
* @param {string} [from] Queries items created since the specified date-time (inclusive).
674
674
* @param {string} [to] Queries items created before the specified date-time (inclusive).
0 commit comments