v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
activity

List Activities for a Profile

List of activities belonging to user profile.

Activities represent snapshots of performed actions and can be filtered by various parameters to narrow down the results.

get/v1/profiles/{profileId}/activities

Path parameters

profileIdinteger required

The unique identifier of the profile.

Query parameters

monetaryResourceType'ACCRUAL_CHARGE' | 'ACQUIRING_PAYMENT' | 'ASSETS_WITHDRAWAL' | 'BALANCE_CASHBACK' | 'BALANCE_INTEREST' | 'BALANCE_TRANSACTION' | 'BANK_DETAILS_ORDER' | 'BATCH_TRANSFER' | 'CARD_CASHBACK' | 'CARD_ORDER' | 'CARD_TRANSACTION' | 'DIRECT_DEBIT_INSTRUCTION' | 'DIRECT_DEBIT_TRANSACTION' | 'FEE_REFUND' | 'INCIDENT_REFUND' | 'INCORPORATION_ORDER' | 'OPERATIONAL_TRANSACTION' | 'PAYMENT_REQUEST' | 'REWARD' | 'REWARDS_REDEMPTION' | 'SEND_ORDER' | 'SEND_ORDER_EXECUTION' | 'TRANSFER'

Type of Activity Monetary Resource.

Example:TRANSFER

Filter activity by resource type.

status'REQUIRES_ATTENTION' | 'IN_PROGRESS' | 'UPCOMING' | 'COMPLETED' | 'CANCELLED'

Status of the Activity.

  • REQUIRES_ATTENTION - Requires an end user attention.
  • IN_PROGRESS - Indicates that this activity has yet to be completed. (Example: In progress Top Up)
  • UPCOMING - Indicates that this activity is scheduled to happen in the future. By default these activities will only be shown 2 days before the date. (Example: A scheduled transfer)
  • COMPLETED - Indicates that this activity is at its end state. (Example: A completed Top Up)
  • CANCELLED - Indicates that this activity is cancelled. (Example: A Top Up is cancelled)
Example:IN_PROGRESS

Filter by activity status.

sincestring date-time
Example:2025-03-10T11:56:30.376Z

Filter activity list after a certain timestamp. Use ISO 8601 format.

untilstring date-time
Example:2025-03-30T23:59:59.999Z

Filter activity list until a certain timestamp. Use ISO 8601 format.

nextCursorstring

Pagination cursor returned from a previous response. Use the cursor value from the response to fetch the next page of activities.

sizeinteger

Desired size of query. Min 1, max 100, and default value is 10 if not specified.

Headers

X-External-Correlation-Idstring uuid

Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.

Response

OK - Successfully retrieved activities.

cursorstring nullable

Pagination cursor. Pass this value as the nextCursor query parameter to fetch the next page of results. Returns null when there are no more pages.

Example response

{
  "activities": [
    {
      "id": "TU9ORVRBUllfQUNUSVZJVFk6OjE0NTU4OTk4OjpDQVJEX1RSQU5TQUNUSU9OOjozNDMwNDk=",
      "type": "CARD_PAYMENT",
      "resource": {
        "type": "TRANSFER",
        "id": "343049"
      },
      "title": "<strong>Test Payment</strong>",
      "primaryAmount": "150 JPY",
      "secondaryAmount": "1.50 SGD",
      "status": "IN_PROGRESS",
      "createdOn": "2023-01-01T00:00:00.000Z",
      "updatedOn": "2023-01-01T00:00:00.000Z"
    }
  ]
}