The endpoint returns the list of all possible AML questions and answers that the user needs to select during the onboarding process before starting investing.
You can pass the parameter Accept-Language
with a string containing ISO 639-1 language code to get the list of AML questions and answers translated into the chosen language. Currently, Bitpanda supports translations for German, Polish, French, Spanish, Italian, and Turkish. The default language is English (en). If you pass the parameter for a language that does not have an existing translation in our database, the response returns the AML questions and answers in English.
Success Response
Unauthorized
Error
Too Many Requests
Error
Maintenance or Service unavailable
{- "data": [
- {
- "id": 1,
- "question": "What is the origin of funds you intend to invest?",
- "translation_key": "aml.question.one",
- "description": "Question 1 out of 6",
- "description_translation_key": "aml.question.one.description",
- "step": 1,
- "answers": [
- {
- "id": 1,
- "answer": "Salary (personal income)",
- "translation_key": "aml.question.one.answer.one"
}
]
}
], - "meta": {
- "total_count": 48,
- "page": 3,
- "page_size": 10
}, - "links": {
- "first": "?page=1&page_size=10",
- "last": "?page=5&page_size=10",
- "prev": "?page=2&page_size=10",
- "next": "?page=4&page_size=10",
- "self": "?page=3&page_size=10"
}
}