Get all stored user attributes
This GET endpoint is used to retrieve all stored user attributes for all destination token. <br> You can use this endpoint to retrieve user attributes and provide personalized service to your users based on their preferences, demographic data, or other relevant information. <br> To use this endpoint, you need to provide the user_token as parameters in the URL Path. <br> The endpoint will then return all the stored attributes for the provided user in the context of the destination token. If multiple attribute set tokens are available, all the sets and their values will be returned.
Path parameters
Token representing the user to retrieve attributes for
Query parameters
When set to true, the language that is set on the user profile will be used to display the labels and expected values. When false, English labels will be used.
Headers
Unique key to prevent duplicate processing
When provided, it is used in conjunction with show_translated_labels and overrides the language setting of the user profile
Response
successful operation
Example response
[
{
"destination_token": "123e4567-e89b-12d3-a456-426614174000",
"payer_logo": "U3dhZ2dlciByb2Nrcw==",
"payer_name": "Elektra",
"exchange_rate": [
{
"currency_symbol": "MXN",
"exchange_rate": 18.37
}
],
"max_limit": 10000,
"number_of_locations": 13007,
"estimated_availability": "2020-07-21T17:32:28Z",
"additional_description": "Requires drivers license to pickup funds",
"attributes": [
{
"attr_set_token": "attr_set_e2ca24e9-c546-4c64-90d2-cb8e70e7c9ba",
"label": "JPMorgan Chase",
"attributes": [
{
"token": "attr_e2ca24e9-c546-4c64-90d2-cb8e70e7c9ba",
"label": "Checking Account Number",
"validation": "[0-9]{50}",
"is_optional": true,
"value": "432532532",
"expected_value": "Date format MM/DD/YYYY",
"type": "BankAccountNumber",
"input_type": "text"
}
]
}
]
}
]