List funding activity

Use this method to return a [paginated](https://docs.payroc.com/api/pagination) list of activity associated with your merchants' funding balances within a specific date range. Use query parameters to filter the list of results we return, for example, to view the activity for a specific merchant's funding balance. Our gateway returns the following information about each activity in the list: - Name of the merchant who owns the funding balance. - Amount of funds added or removed from the funding balance. - Funding account that received funds from the funding balance.

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query Parameters

beforestringOptional

Return the previous page of results before the value that you specify.

You can’t send the before parameter in the same request as the after parameter.

afterstringOptional

Return the next page of results after the value that you specify.

You can’t send the after parameter in the same request as the before parameter.

limitintegerOptional<=100Defaults to 10
Limit the maximum number of results that we return for each page.
dateFromdateRequired

Filter by activity after a specific date. Send a value in YYYY-MM-DD format.

dateTodateRequired

Filter by activity before a specific date. Send a value in YYYY-MM-DD format.

merchantIdstringOptional
Filter results by the unique identifier that the processor assigned to the merchant.

Response

Successful request. Returns a list of funding activity.
datalist of objects
Array of activityRecord objects.
countdouble or null

Number of results we returned on this page.

Note: This might not be the total number of results that match your query.

hasMoreboolean or null
Indicates whether there is another page of results available.
limitdouble or null
Maximum number of results that we return for each page.

Errors