# Retrieve multi currency account for a profile

Returns the multi-currency account details for the specified profile. If the user does not yet have a multi-currency account, a 404 Not Found will be returned.

Endpoint: GET /v4/profiles/{profileId}/multi-currency-account
Security: UserToken

## Path parameters:

  - `profileId` (integer, required)
    Profile ID.

## Response 200 fields (application/json):

  - `id` (integer)
    Multi currency account ID.
    Example: 1

  - `profileId` (integer)
    Profile ID the multi currency account is attributed to.
    Example: 33333333

  - `recipientId` (integer)
    Recipient ID of the multi currency account, to be used for transfer recipient.
    Example: 12345678

  - `creationTime` (string)
    Datetime when multi currency account was created.
    Example: "2020-05-20T14:43:16.658Z"

  - `modificationTime` (string)
    Datetime when multi currency account was last modified.
    Example: "2020-05-20T14:43:16.658Z"

  - `active` (boolean)
    Whether multi currency account is active or not.
    Example: true

  - `eligible` (boolean)
    Whether multi currency account is eligible or not.
    Example: true


