Skip to main content

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

    accountId stringrequired

    Partner account id to retrieve Funding Channels for.

Query Parameters

    limit number

    amount of records to return (max 100)

    cursor string

    cursor to retrieve the next page

Responses

Successful operation

Schema

    items

    object[]

  • Array [

  • id stringrequired

    Funding Channel primary identifier.

    accountId stringrequired

    Partner Account ID.

    createdAt stringrequired

    Timestamp of Funding Channel creation.

    fundingTypeName stringrequired

    The type of Funding Channel registered.

    name stringrequired

    Name of the Funding Channel.

    purpose stringrequired

    Purpose of the Funding Channel.

    params

    object

    required

    Parameters for the Funding Channel.

    oneOf

    storageAddress string

    The address of the storage contract.

    storageAddress stringdeprecated

    Deprecated. See params for storage address.

  • ]

  • pageInfo

    object

    Page info for paginated results, undefined if no page info

    nextCursor string

    Cursor for next page, undefined if no more pages

Loading...