List Funding Channels
GET/api/accounts/:accountId/funding-channels
Retrieves a list of Funding Channels for the given account
This API uses cursor-based pagination. Start by making a request without a cursor to get the first page. Use the nextCursor from the pageInfo in the response as the cursor for subsequent requests to retrieve further pages. Continue until nextCursor is undefined, indicating no more data.
Request
Path Parameters
Partner account id to retrieve Funding Channels for.
Query Parameters
amount of records to return (max 100)
cursor to retrieve the next page
Responses
- 200
- 403
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
- universal-evm
- algorand
- custodial
- simulator
]
items
object[]
Funding Channel primary identifier.
Partner Account ID.
Timestamp of Funding Channel creation.
The type of Funding Channel registered.
Name of the Funding Channel.
Purpose of the Funding Channel.
params
object
required
Parameters for the Funding Channel.
oneOf
The address of the storage contract.
The address of the partner channel.
The ID of the billing funding source.
The base URL for the webhook.
Deprecated. See params
for storage address.
pageInfo
object
Page info for paginated results, undefined if no page info
Cursor for next page, undefined if no more pages
{
"items": [
{
"id": "315bad4e81ce0f26966a41b9d451638b",
"accountId": "65a7e8ef0d230d0a6bf755e07d39eb02",
"createdAt": "2023-08-14T12:32:54",
"fundingTypeName": "polygon-amoy-usdc-universal-evm-test",
"name": "immersve-polygon-usdc",
"purpose": "card-funding"
}
],
"pageInfo": {
"nextCursor": "dGhlIG5leHQgY3Vyc29yIGdvZXMgaGVyZQ=="
}
}
No Authorization to access resource
- application/json
- Schema
- Example (from schema)
Schema
{
"statusCode": 403,
"statusName": "Forbidden",
"errorCode": "FORBIDDEN",
"reason": "Unauthorized"
}