[{"data":1,"prerenderedAt":781},["ShallowReactive",2],{"$f64byiVI3tLcE2zPJr9Ygu0yRjN6qq4tErLaT4G5mJGs":3,"$fK4mTeQUmU-LjPLG8ZElRYvGTNJinoopHwm_vHUILCGs":32,"operation-getMetadata":120,"$feMnBvj5J3nXUM6Nqn9SSYtqMVgSLRwSBWsMhrhvC4DY":353,"$fATuhZIyMJuJfmIKgJZ8B_9nH3B80kTw5y7f37WridD0":365,"$fUMUYPS1CB9LVAcDaFbK6yBVcLW6x3wD37PyxJpYGNaw":373,"$fV_W_Km9ecHGV5d2ucEPLPeNKxbVsjhZ4w9EALXYf0_4":381,"$faVtJuvFe_e5lws70MowsoONDhQ3SLDK-lThCfYxLSfE":389,"$f1caYulVetnPCDoBfmfwsx5F5mGgXEp3QxYGsIzjknps":397,"$fQK-HgP_RBNthfzRuTMft1oIUH2IpdMaEiWau9twgCqE":405,"$f-RWlrPhGvlT69yabQL-O9ZA90wtGnGFNelpfIoUWfEU":413,"$ftgiruO9yfYqeiocipM_8OZ0NJsPYDMn6LVmHew7mZI4":421,"$fpR13FHtzKJb055GXf3l7SGnqwf6R4lTpWKcVdAi3zSQ":429,"$f61onu-QnjJe2N2-_U7wd65_FNCu7UAYSTj_2lQzgm4k":437,"$foLY2iM2BP0vnwsq8wmjPOiqUfHST0QIzWzUfUvLKidQ":445,"$f4lvkvNqwdBMpLFxmct-EYky4WtMCMCjLBoFeFqj6AjQ":453,"$fk4eN1Zd_BOLC_YpDAfstHQUKJOKP0AWCb_YcLFe4A1o":461,"$f1upN1eKiFI6EvgbmAPZFiJWZPZvvWv35y4amS-jy2bw":757,"$fbypOx0zPKRkh8MV6c-CaGGsy_dNH7LwJN_-UNAqEopU":765,"$fk8KFQ01V7-m2a8cL0URrVpnpn1-inxfUIXwiY7H6mlg":773},{"info":4,"servers":11,"security":15,"securitySchemes":20},{"title":5,"description":6,"contact":7,"version":10},"Authologic Customer API","\nThe integration API for using with Authlogic Engine.\n\nAuthologic allows for simple and effective checking of the user's identity, and the use of API enables initiation by an external system\nthe verification process and the receipt of its results.\n                ",{"name":8,"email":9},"API support","tech-support@authologic.com","1.1",[12],{"url":13,"description":14},"https:\u002F\u002Fsandbox.authologic.com","Testing environment",[16,18],{"apiKey":17},[],{"oauth2":19},[],{"apiKey":21,"oauth2":25},{"type":22,"description":23,"scheme":24},"http","To log in, use the user's login and password. The password is the API key obtained for a specific environment. You can generate a new key in the API Keys section of the OmniPanel.","basic",{"type":26,"description":27,"scheme":26,"flows":28},"oauth2"," To log in, use the user's login and password for client_id and client_secret, respectively. The password is the API key obtained for a specific environment. You can generate a new key in the API Keys section of the OmniPanel.\n \n Here is an example curl command for getting an access token:\n\n```bash\ncurl -i -X POST 'https:\u002F\u002FENVIRONMENT_URL\u002Fapi\u002Foauth2\u002Ftoken' --header 'Authorization: Basic base64(user:pass)' --header 'Content-Type: application\u002Fx-www-form-urlencoded' -d 'grant_type=client_credentials'\n```\n\n**Note the following:**\n- use HTTP POST method while making the call\n- set the Content-Type header to application\u002Fx-www-form-urlencoded\n- pass in OAuth flow information: grant_type=client_credentials\n    Once the token has been received, it should be stored somewhere and can be used while making regular api calls.\n The OAuth calls should set the Authorization header as follows:\n \n ```http\nAuthorization: Bearer \u003Ctoken>\n```\n ",{"clientCredentials":29},{"tokenUrl":30,"scopes":31},"https:\u002F\u002Fsandbox.authologic.com\u002Fapi\u002Foauth2\u002Ftoken",{},[33,41,48,55,62,69,75,81,88,94,100,107,114],{"operationId":34,"method":35,"path":36,"summary":37,"description":38,"tags":39},"createConversation","POST","\u002Fapi\u002Fconversations","Start a new user verification process","\nEach process of getting data and confirming the identity of the user should start by calling this method.\nThe call initiates this process and returns information about the address to which the user should be redirected to\ngathering the information requested from him.\n\n::note\nIn order to use the API you need to obtain the login and password for a for a specific environment. \nYou can generate a new API key in the API Keys section of the OmniPanel.\nThe API is accessible via either HTTP Basic authentication or OAuth2 client credentials flow.\nBoth methods accept the same API key.  \nWhen using OAuth2, the API key can be sent either via Authentication Bearer header or via HTTP POST body.  \n::\n\n\n::note\nThis is because all of these fields may have their default values set on the Authologic side when creating your account. If any value does not have a default setting you will get an error and you should either provide that value or report to Authologic to set the default one.\n::\n\nThe query contains three groups of information:\n * general information such as:\n   * **userKey**: User ID on your system\n   * **strategy**: information about the identity checking strategy (usually the default value is sufficient)\n   * **returnUrl**: URL to which the user should be redirected after the process is completed\n   * **callbackUrl**: information about the return address to which the system will send the acquired information. If this information is not provided, Authologic assumes that the information will be downloaded by the client\n * **query**: query definition containing individual products provided by Authologic\n\n::warning\nThe test environment allows the use of an HTTP address for **callbackUrl**. A production environment always requires HTTPS.\n::\n\n::note\nFor testing purposes, to check the callback request, you can use online tools that accept and present the outgoing requests. One such tool is, for example, [Webhook](https:\u002F\u002Fwebhook.site\u002F). When creating a conversation, it is enough to provide the url generated by Webhook in the callbackUrl parameter.\n::\n\n\nThe information contained in the query section is divided into specific products:\n * **identity** - fetch user information. This section is always required\n    * **requireOneOf**: User information to be specified by Authologic. This is represented as set of sets and Authologic will try to fetch one of these\n    * **optional**: User information that may be specified by Authologic when the information is available\n * **aml** - check user on AML lists\n   * **checks**: lists where the user should be checked\n * **auth** - user authentication product\n * **bankTransactions** - the process of retrieving information about transactions.\n   * **type**: type of transaction - credit, debit or all\n   * **flags**: Additional information on what to return\n * **verify** - confirmation of the compliance of user data\n    * **user**: information about user that should be verified\n        ",[40],"Conversation",{"operationId":42,"method":35,"path":43,"summary":44,"description":45,"tags":46},"nextStep","\u002Fapi\u002Fconversations\u002F{conversationId}\u002Fheadless\u002F{next}","Send the information obtained from the user during the identity verification process","\nTakes the information from the user and calculates the next step that should be rendered to the user.\n\nDetailed description of returned attributes:\n\n| Parameter | Example | Description |\n| --------- | ------- | ----------- |\n| component | GLOBAL\u002FACCEPTED | Name of method related with current step and expected action related to UI in verification process. |\n| next | fd78cf43-12a7... | Id of the page to which the user information should be submitted. Information is sent via the method `POST \u002Fapi\u002Fconversations\u002F{conversationId}\u002Fheadless\u002F{next}`. |\n| args | parameter name list | List of parameters that should be displayed to the user. |\n| errors | map with field name and error description | A map specifying incorrectly entered form fields and a description of the associated error. |\n| errors.field | parameter name sent in `body` attribute, validated and marked as incorrect | Value specifying incorrectly entered form field. |\n| errors.code  | error code related to the field described in `errors.field` attribute | Value describing the error associated to the form field. |\n",[47],"Enterprise Integration",{"operationId":49,"method":50,"path":51,"summary":52,"description":53,"tags":54},"getConversation","GET","\u002Fapi\u002Fconversations\u002F{conversationId}","Retrieving up-to-date data as defined by the user identity verification process","\n::warning\nIn practice, instead of this method you should use the callback mechanism described \u003Ca href=\"https:\u002F\u002Fdeveloper.authologic.com\u002Fdocs\u002Fdeveloper-documentation\u002Fintegration-callbacks\">here\u003C\u002Fa>.\n::\n\nReturns information about how the identity validation process is performed for the given conversation ID.\nIn the case of using the callback mechanism, the use of this method is optional - data needed\nare sent automatically when they change.\n\n## Detailed Description of the Reply Contents\n\n| Parameter | Example                                                                       | Description                                                                                                                                                                                                                                                                                |\n|-----------|-------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| id | e0c0b3cc-8238-414f-9940-9f14bd1b8693                                          | Conversation ID.                                                                                                                                                                                                                                                                           |\n| userKey | 7dfb9ded-c38f-49ae-95e2-307283a0b1f6                                          | User ID on your system.                                                                                                                                                                                                                                                                    |\n| url | https:\u002F\u002Fsandbox.authologic.com\u002Fc\u002Fc12c1adc-3ff0-4d32-b95c-c593135c903e         | A unique web address to which the user should be redirected to verify his identity.                                                                                                                                                                                                        |\n| status | FINISHED                                                                      | Conversation status: `CREATED` - ready conversation, `IN_PROGRESS` - query data being specified, `FINISHED` - query is complete,  `CANCELED` - user aborted, `EXPIRED` - conversation expired     |\n| result | -                                                                             | Structure describing the information found                                                                                                                                                                                                                                                 |\n| result.identity | -                                                                             | Structure describing the result of the identity check                                                                                                                                                                                                                                      |\n| result.identity.status |                                                                               | Identity validation effect: `IN_PROGRESS` - checks in progress, `FINISHED` - checks from query complete, `PARTIAL` - checks completed but only part of the data could be determined, `FAILED` - checks completed but no data could be determined.                                          |\n| result.identity.user | (see example in `verify.user` from `\u002Fapi\u002Fconversations`)                      | User information                                                                                                                                                                                                                                                                           |\n| result.identity.errors | [\"SCAN_DOCUMENT_NOT_DETECTED\"]                                                | Information about the causes of errors. The content depends on the specific method of verification                                                                                                                                                                                         |\n| result.identity.checks | (see examples in [additional validations documentation](..\u002Faddon-checks.md).) | A list of additional validations performed on user data                                                                                                                                                                                                                                    |\n| result.aml | -                                                                             | Structure describing the result of user checking on AML lists                                                                                                                                                                                                                              |\n| result.aml.status |                                                                               | User checking effect. Same as the `result.identity.status` field                                                                                                                                                                                                                           |\n| result.aml.found | [\"PEP\", \"SANCTIONS\", \"ADVERSE_MEDIA\", \"SIP\", \"OTHER\"]                         | A table informing about the AML lists on which user data was found.                                                                                                                                                                                                                        |\n| result.aml.subscription | -                                                                             | Structure that informs that the AMLs to be checked are periodic                                                                                                                                                                                                                            |\n| result.aml.subscription.active | true                                                                          | Structure that informs about active periodic AML checking                                                                                                                                                                                                                                  |\n| result.aml.subscription.lastChanged | \"2020-09-17T11:18:21.999Z\"                                                    | Date when the user's information on the AMLs was last changed                                                                                                                                                                                                                              |\n| result.verify | -                                                                             | Structure describing the result of comparing the data obtained from the identity verification process                                                                                                                                                                                      |\n| result.verify.status |                                                                               | Identity validation effect: `IN_PROGRESS` - checks in progress, `FINISHED` - checks from query complete, `PARTIAL` - checks completed but only part of the data could be determined, `FAILED` - checks completed but no data could be determined.                                          |\n| result.verify.reliability | 0.66667                                                                       | A number specifying the similarity of the data obtained from the identity check process to the data provided in the query, where `0` means different data and `1.0` means identical data. Due to the differences in the format, data recording the value can be any value between 0 and 1. |\n| result.verify.details | -                                                                             | Details of the individual data comparison storing the name of the field being compared and a number indicating the similarity of the data.                                                                                                                                                 |\n| result.auth | -                                                                             | Structure describing the result of user authentication                                                                                                                                                                                                                                     |\n| result.auth.status |                                                                               | Authentication status: `IN_PROGRESS` - checks in progress, `FINISHED` - checks from query complete, `FAILED` - checks completed but no data could be determined.                                                                                                                            |\n| result.auth.token | a7d5d522-5308-4ec9-9789-53b4ec6d47ae                                          | A unique user ID associated with a given login method. Going through the login process again with the given method will always return the same token.                                                                                                                                      |\n| result.auth.challenge | 403ad98c-c5fd-4991-a365-12ec70a93932                                          | A unique equivalent of the user login associated with a given login method. Used in methods that cannot determine who is authenticating and need this information to run the process.                                                                                                      |\n| result.bankTransactions | -                                                                             | Structure describing the result of downloading transactions                                                                                                                                                                                                                                |\n| result.bankTransactions.status |                                                                               | Effect of downloading transactions. Same as the `result.identity.status`                                                                                                                                                                                                                   |\n| result.affordability | -                                                                             | Structure describing the result of the identity check                                                                                                                                                                                                                                      |\n| result.affordability.status |                                                                               | Affordability assessment validation effect: `IN_PROGRESS` - checks in progress, `FINISHED` - checks from query complete, `FAILED` - checks completed but no data could be determined.                                          |\n| result.affordability.errors | [\"PROVIDER_UNAVAILABLE\"]                                                | Information about the causes of errors.                                                                                                                                                                                    |\n| info | -                                                                             | Optional information containing an array describing the data sources used in the conversation.                                                                                                                                                                                             |\n| info.country | PL                                                                            | Selected\u002Fused country in ISO 3166-1 alpha-2 format                                                                                                                                                                                                                                         |\n| method | PSD2                                                                          | Data source used specifying the verification method or data source used.                                                                                                                                                                                                                   |\n\n        ",[40],{"operationId":56,"method":57,"path":51,"summary":58,"description":59,"tags":60},"deleteConversation","DELETE","Block access or delete data of the verification process","\nCreates the conversation deletion order in two available modes:\n * EXPIRE (default) - triggers the process of expiration of active conversation. \n After completing such an order, the conversation will be switched to the 'EXPIRED' status.\n The verification process will be blocked. \n This means that the user entering such a verification process will be automatically redirected to the 'returnUrl' address.\n * DELETE_DATA - triggers the process of data deletion from finished conversation. \n This mode should be used with caution, when you are sure that you do not expect any callbacks associated with the conversation \n as they may not be delivered.\n        ",[61],"Advanced",{"operationId":63,"method":50,"path":64,"summary":65,"description":66,"tags":67},"getMetadata","\u002Fapi\u002Fconversations\u002F{conversationId}\u002Fidentity\u002Fmetadata","Retrieving information about the metadata collected during the identification process","\nReturns information about the available metadata that was collected during the identification process.\n\nDetailed description of returned fields:\n\n| Parameter | Example | Description |\n| --------- | ------- | ----------- |\n| id | 9db8a804-4570-403e-9da6-162e608585e8 | Conversation ID. |\n| letter | - | A structure representing the set of metadata collected from the identity validation process. |\n| list.media | - | List of information about available multimedia files. |\n| list.media.id | 7a4d1a9f-bdac-4d2c-96a6-bb51fb4ec7c5 | The ID of the media file. |\n| list.media.type | DOCUMENT | Media file type. Possible values: `DOCUMENT` - document of the authenticated person, `FACE` - face of the authenticated person, `REPORT` - report on the verification process |\n| list.media.subtype | ID_CARD | The sub-type of the media file, such as the type of document. The value is blank if `type` = `FACE`. `ID_CARD` - identity card of the authenticated person, `DRIVER_LICENSE` - driving license of the authenticated person, `PASSPORT` - passport of the authenticated person, `RESIDENCE_PERMIT` - residence card of the authenticated person, `UTILITY_BILL` - proof of address of the authenticated person |\n| list.media.variant | FRONT | Variant of the media file, e.g. document page. The value is blank if `type` = `FACE`. `FRONT` - front side of the document, `BACK` - back side of the document |\n| list.media.contentType | image \u002F png | The type of media file content. Example values: `image\u002Fpng`, `video\u002Fmp4` |\n        ",[68],"Metadata",{"operationId":70,"method":50,"path":71,"summary":72,"description":73,"tags":74},"getMedia","\u002Fapi\u002Fconversations\u002F{conversationId}\u002Fidentity\u002Fmetadata\u002Fmedia\u002F{id}","Retrieving media file that was collected during the identification process","\nReturns stream of media file (images, videos, pdf reports etc.) collected during identification process.\n\nIf the answer is successful, the data stream will be provided along with the following key HTTP headers:\n\n| Header | Example | Description |\n| ------ | ------- | ----------- |\n| content-disposition | attachment; filename = 9db8a804-4570-403e-9da6-162e608585e8_idi_ID_CARD_BACK.png | The file name is generated based on information about the media file. |\n| content-type | image \u002F png | The type of multimedia file content, similar to the one presented in the information about the given file. |\n| status | 200 | Response status. |\n\nIn case of a wrong answer, the error information will be passed in the format `application\u002Fvnd.authologic.v1.1+json`.\n        ",[68],{"operationId":76,"method":50,"path":77,"summary":78,"description":79,"tags":80},"currentStep","\u002Fapi\u002Fconversations\u002F{conversationId}\u002Fheadless","Obtaining the information needed to show the user the current page of the identity verification process","\nReturns information about the values that should be rendered on page and displayed to the user.\n\nDetailed description of the returned attributes:\n\n| Parameter | Example | Description |\n| --------- | ------- | ----------- |\n| component | SMART_ID\u002FSHOW_CODE | Name of method related with current step and expected action related to UI in verification process. |\n| next | fd78cf43-12a7... | Id of the page to which the user information should be submitted. Information is sent via the method `POST \u002Fapi\u002Fconversations\u002F{conversationId}\u002Fheadless\u002F{next}`. |\n| args | parameter name list | List of parameters that should be displayed to the user. |\n",[47],{"operationId":82,"method":50,"path":83,"summary":84,"description":85,"tags":86},"getBankTransactions","\u002Fapi\u002Fconversations\u002F{conversationId}\u002FbankTransactions","Retrieving a list of banking transactions related to the conversation","\nThe method allows you to get user transactions, if the conversation contains them. By default, it downloads transactions for a maximum of 90 full days,\nthat is: today + 90 previous days. If you need a larger scope - please contact us. Transactions are returned as defined when creating the conversation.\nBy default, this means both crediting and debiting the account, and only transactions that have already been made (posted or pending).\nTransactions are available when the appropriate callback is received, or when the _bankTransactions_ status reaches _FINISHED_.\n\n## Query Parameters Description\nThe method supports the following query parameters:\n\n| Parameter | Example | Description |\n| ------- | ------- | ------- |\n| page | 10 | Page number. Paging starts on page 0 (default). |\n| pageSize | 10 | Number of transactions on the results page. Currently, values above 200 are treated as 200. |\n\n## Response Content\n\nDetailed description of returned fields:\n\n| Parameter                             | Example | Description |\n|---------------------------------------| ------- | ----------- |\n| id                                    | 34df2bd6-b790-4560-9fc9-f86c86d87990  | Unique transaction identifier |\n| date | 2020-08-27T10: 40: 28.348Z | Date of operation in UTC time |\n| status | PENDING | Status of a given transaction at the time of downloading information from the bank. Allowed values: `BOOKED` - posted transaction, `PENDING` - transaction in progress, `SCHEDULED` - future transaction. Scheduled transactions appear when the `flags` field with the value` INCLUDE_SCHEDULED` was specified when creating the conversation. |\n| bank | BREXPLPW | Bank where the transaction was performed. The value identifies the bank as the SWIFT \u002F BIC code. |\n| accountId | PL68249000050000400075212326 | Account number where transaction was registered. |\n| type | DEBIT | Type of transaction. Available values: `DEBIT` (account debit) and `CREDIT` (account credit) |\n| amount | 1000 | Value of the transaction in a currency unit, e.g. in grosze. |\n| currency | PLN | type of currency |\n| title | Account top-up | Transaction title |\n| sender | Jan Kowalski | Transaction sender |\n| senderAccountId | PL68249000050000400075212326 | Account number of the sender |\n| recipient | Jan Kowalski | Recipient of the transaction |\n| recipientAccountId | PL32114020040000320250132522 | Account number of the receiver |\n| tags | [\"transfer:bank:commission\", \"income:crypto\"] | Transaction categories |\n        ",[87],"Bank",{"operationId":89,"method":50,"path":90,"summary":91,"description":92,"tags":93},"getBankTransactionsStats","\u002Fapi\u002Fconversations\u002F{conversationId}\u002FbankTransactions\u002Fstats","Retrieving statistics of downloaded banking transactions related to the conversation","\nReturns statistics related to downloaded transactions. These statistics are returned for each account that has been shared as part of the conversation.\nThis information only occurs when the _bankTransactions_ section is defined when creating a conversation.\nand are available when the appropriate callback is received, or when the _bankTransactions_ status reaches _FINISHED_.\n\n## Query Parameter Description\nThe method supports the following query parameters:\n\n| Parameter | Example | Description |\n| --------- | ------- | ----------- |\n| dateFrom | 2020-09-17T11: 18: 21.999Z | The starting date for the scope of analyzed transactions in the format https:\u002F\u002Ftools.ietf.org\u002Fhtml\u002Frfc3339. The default value is the oldest available transaction. You can enter an earlier date, but only transactions that the user has shared will be included. |\n| dateTo | 2020-09-17T11: 18: 21.999Z | The end date for the range of analyzed transactions in the format https:\u002F\u002Ftools.ietf.org\u002Fhtml\u002Frfc3339. The default value is the latest available transaction. You can enter a later date, but only transactions that the user has shared will be included. |\n\n## Response Content Description\n\n::note\nReturned fields may be missing some information. For example, if only the account credits were\nselected when creating a conversation, the statistics do not contain information about the charges.\n::\n\nDetailed description of returned fields:\n\n| Parameter                               | Example                      | Description |\n|-----------------------------------------|------------------------------| ----------- |\n| dateFrom                                | 2020-09-16T10: 44: 51.544Z   | The starting date of the search criteria, or the date of the first transaction for all bank accounts, if the criteria was empty. The field will not be presented if the starting date criterion is not specified and there are no transactions in the given search criteria. |\n| dateTo                                  | 2020-09-16T10: 44: 51.544Z   | End date of the search criteria, or the date of the last transaction for all bank accounts, if the criteria was empty. The field will not be presented if the end date criterion is not specified and there are no transactions in the given search criteria. |\n| items                                   | -                            | A structure containing information about transaction statistics. Each element of this structure represents statistics from a separate bank account. |\n| items.dateFirst                         | 2020-06-16T00: 00: 00.000Z   | Date of the first transaction in the range. |\n| items.dateLast                          | 2020-09-16T00: 00: 00.000Z   | Date of the last transaction in the range. |\n| items.numberOfCreditTransactions        | 12                           | Number of bank account discretionary transactions. |\n| items.numberOfDebitTransactions         | 12                           | Number of debit transactions on the bank account. |\n| items.avgCreditPerMonth                 | 300,000                      | Average value of credit transactions per month, presented in basic units - e.g. in grosze. The value will be available if the analyzed period is greater than 60 days. |\n| items.avgDebitPerMonth                  | 258000                       | Average value of debit transactions per month, presented in basic units - e.g. in grosze. The value will be available if the analyzed period is greater than 60 days. |\n| items.avgCredit                         | 30,000                       | Average value of bank account discretionary transactions, presented in basic units - e.g. in grosze. |\n| items.avgDebit                          | 40,000                       | Average value of bank account debit transactions, presented in basic units - e.g. in grosze. |\n| items.maxCredit                         | 110000                       | Maximum value of a bank account discretionary transaction, presented in basic units - e.g. in grosze. |\n| items.maxDebit                          | 132000                       | The maximum value of the debit transaction from the bank account, presented in basic units - e.g. in grosze. |\n| items.accountId                         | PL68249000050000400075212326 | Account number.                  |\n| items.currency                          | PLN                          | Currency code for a given bank account. |\n\n        ",[87],{"operationId":95,"method":50,"path":96,"summary":97,"description":98,"tags":99},"getBankTransactionsAccounts","\u002Fapi\u002Fconversations\u002F{conversationId}\u002FbankTransactions\u002Faccounts","Retrieving information on bank accounts related to the conversation","\nReturns information about the accounts from which transactions have been downloaded.\nThis information occurs only when the _bankTransactions_ section was defined when creating a conversation.\nand are available when the appropriate callback is received, or when the _bankTransactions_ status reaches _FINISHED_.\n\n## Description of the Response Content\n\nDetailed description of returned fields:\n\n| Parameter | Example | Description |\n| --------- | ------- | ----------- |\n| date | 2020-09-17T11: 18: 21.999Z | Date on which the information was collected.|\n| balance | 10030 | Account balance in a currency unit, e.g. in pennies. The value determines the balance of funds available on the account or, if there is no such information, the balance of funds booked. It may not occur if the bank does not provide the balance. |\n| bank | BREXPLPW | Bank where the transaction was performed. The value identifies the bank as the SWIFT \u002F BIC code. |\n| accountId | PL68249000050000400075212326 | Account number. |\n| currency | PLN | currency type |\n| activationDate | 2014-11-19 | The date when the account was opened or the date of the oldest transaction found. |\n\n        ",[87],{"operationId":101,"method":50,"path":102,"summary":103,"description":104,"tags":105},"getAMLList","\u002Fapi\u002Fconversations\u002F{conversationId}\u002Faml\u002F{list}","Retrieving detailed information about the user collected during the AML process","\nThe method retrieves data found in AML lists based on user data. Data from AML lists as defined when creating the conversation.\nWhen a continuous AML monitoring subscription is activated, only the latest available data is returned.\n\nWe can specify the list type in the query by specifying one of the following AML list types: `PEP`, `SIP`, `SANCTIONS`, `ADVERSE_MEDIA`, `OTHER`.\nDepending on the type of list you select, the structure of the response may vary.\n\n::note\nAML verification sources provide data in an inconsistent form, e.g., some dates and country names. We currently provide this data as received from the source, but in future we may unify them on Authologic side. This may change the format of the data available to the API.\n::\n\n### Response Parameters Available for PEP List Type\n\n| Parameter                              | Example                                 | Description                                                                              |\n|----------------------------------------|-----------------------------------------|------------------------------------------------------------------------------------------|\n| type                                   | PERSON                                  | Informs if entry describes user or users's relative: `PERSON` - user, `RCA` - users's relative |\n| score                                  | 0.98                                    | Compliance level of provided personal data with results (0-1 if provided or null)        |\n| reason                                 | --                                      | Reason why person is on the list                                                         |\n| user.person                            | --                                      | Data found on AML lists for provided person                                              |\n| user.person.name.firstName             | --                                      | User name                                                                                |\n| user.person.name.lastName              | --                                      | User surname                                                                             |\n| user.person.name.middleName            | --                                      | Second name                                                                              |\n| user.person.name.spellings             | --                                      | Correct spelling of name and surname (including national language)                       |\n| user.person.name.alsoKnownAs           | --                                      | Alias names of person under verification                                                 |\n| user.person.name.alsoKnownAs.firstName | --                                      | User's other firstname                                                                   |\n| user.person.name.alsoKnownAs.lastName  | --                                      | User's other surname                                                                     |\n| user.person.name.alsoKnownAs.title     | --                                      | User alias                                                                               |\n| user.person.address.country            | POLAND (no unified country name format) | Country of residence of the person                       |\n| user.person.info                       | --                                      | Additional information about the person under verification                               |\n| user.person.info.gender                | MALE                                    | The gender of the user: `MALE`, `FEMALE`, `OTHER`                                        |\n| user.person.info.nationality           | Poland (no unified country name format) | User's nationality                                       |\n| user.person.info.birthDate             | 1972-10-18 (no unified date format)     | Date of birth |\n| user.person.info.deceased              | true\u002Ffalse                              | Information if person is dead |\n| user.person.info.deceaseDate           | 2020-10-18 (no unified date format)     | Date of death |\n| user.person.info.image                 | --                                      | URL to person's picture |\n| user.person.info.roles                 | --                                      | Information about the exposed position held by the person |\n| user.person.info.roles[].title         | --                                      | Position held or `Unknown` if position is unknown |\n| user.person.info.roles[].country       | (no unified country name format)        | The country in which the position was held or 'Unknown' if country is unknown |\n| user.person.info.roles[].fromDate      | 2014-05-01 (no unified date format)     | Start date of tenure |\n| user.person.info.roles[].tillDate      | 2019 (no unified date format)           | End date of tenure |\n\n### Response Parameters Available for SANCTIONS List Type\n\n| Parameter                                           | Example | Description                                                                                   |\n|-----------------------------------------------------|---------|-----------------------------------------------------------------------------------------------|\n| type                                                | PERSON  | Informs if entry describes user or users's relative: `PERSON` - user, `RCA` - user's relative |\n| score | 0.98 | Compliance level of provided personal data with results (0-1 if provided or null) |\n| reason | -- | Reason why person is on the list |\n| sources | -- | Names of AML list types on which the person was found |\n| user.person | -- | Data found on AML lists for provided person |\n| user.person.name.firstName | -- | User name |\n| user.person.name.lastName | -- | User surname |\n| user.person.name.middleName | -- | Second name |\n| user.person.name.spellings | -- | Correct spelling of name and surname (including national language) |\n| user.person.name.alsoKnownAs | -- | Alias names of person under verification |\n| user.person.name.alsoKnownAs.firstName | -- | User's other firstname |\n| user.person.name.alsoKnownAs.lastName | -- | User's other surname |\n| user.person.name.alsoKnownAs.title | -- | User alias |\n| user.person.address.country | POLAND (no unified country name format) | Country of residence of the person |\n| user.person.info | -- | Additional information about the person under verification |\n| user.person.info.gender | MALE | The gender of the user: `MALE`, `FEMALE`, `OTHER` |\n| user.person.info.nationality | Poland (no unified country name format) | User's nationality |\n| user.person.info.birthDate | 1972-10-18 (no unified date format) | Date of birth |\n| user.person.info.deceased | true\u002Ffalse | Information if person is dead |\n| user.person.info.deceaseDate | 2020-10-18 (no unified date format)| Date of death |\n| user.person.info.image | -- | URL to person's picture |\n| user.person.info.roles | -- | Information about the exposed position held by the person |\n| user.person.info.roles[].title | -- | Position held or 'Unknown' if position is unknown |\n| user.person.info.roles[].country | (no unified country name format) | The country in which the position was held or 'Unknown' if country is unknown |\n| user.person.info.roles[].fromDate | 2014-05-01 (no unified date format) | Start date of tenure |\n| user.person.info.roles[].tillDate | 2019 (no unified date format) | End date of tenure |\n\n\n### Response Parameters Available for SIP List Type\n\n| Parameter | Example | Description                                                                                  |\n|-----------| ------- |----------------------------------------------------------------------------------------------|\n| type      | PERSON    | Informs if entry describes user or users's relative `PERSON` - user, `RCA` - user's relative |\n| score | 0.98 | Compliance level of provided personal data with results (0-1 if provided or null) |\n| reason | -- | Reason why person is on the list |\n| user.person | -- | Data found on AML lists for provided person |\n| user.person.name.firstName | -- | User name |\n| user.person.name.lastName | -- | User surname |\n| user.person.name.middleName | -- | Second name |\n| user.person.name.spellings | -- | Correct spelling of name and surname (including national language) |\n| user.person.name.alsoKnownAs | -- | Alias names of person under verification |\n| user.person.name.alsoKnownAs.firstName | -- | User's other firstname |\n| user.person.name.alsoKnownAs.lastName | -- | User's other surname |\n| user.person.name.alsoKnownAs.title | -- | User alias |\n| user.person.address.country | POLAND (no unified country name format) | Country of residence of the person |\n| user.person.info | -- | Additional information about the person under verification |\n| user.person.info.gender | `MALE` | The gender of the user: `MALE`, `FEMALE`, `OTHER`  |\n| user.person.info.nationality | Poland (no unified country name format) | User's nationality |\n| user.person.info.birthDate | 1972-10-18 (no unified date format) | Date of birth |\n| user.person.info.deceased | true\u002Ffalse | Information if person is dead |\n| user.person.info.deceaseDate | 2020-10-18 (no unified date format) | Date of death |\n| user.person.info.image | -- | URL to person's picture |\n| user.person.info.roles | -- | Information about the exposed position held by the person |\n| user.person.info.roles[].title | -- | Position held or 'Unknown' if position is unknown |\n| user.person.info.roles[].country | (no unified country name format) | The country in which the position was held or `Unknown` if country is unknown |\n| user.person.info.roles[].fromDate | 2014-05-01 (no unified date format) | Start date of tenure |\n| user.person.info.roles[].tillDate | 2019 (no unified date format) | End date of tenure |\n\n### Response Parameters Available for ADVERSE_MEDIA List Type\n\n| Parameter | Example | Description |\n| --------- | ------- | ----------- |\n| originalUrl | -- | Link to adverse article |\n| date | 2020-10-18 (date format yyyy-MM-dd) | Adverse media publication date |\n| url | -- | Link to PDF with original adverse media publication |\n| categories | -- | Media categorization |\n\n### Response Parameters Available for OTHER List Type\n\n| Parameter | Example | Description |\n|-----------| ------- | ----------- |\n| type | PERSON    | Informs if entry describes user or users's relative: `PERSON` - user, `RCA` - user's relative |\n| score | 0.98 | Compliance level of provided personal data with results (0-1 if provided or null) |\n| reason | -- | Reason why person is on the list |\n| user.person | -- | Data found on AML lists for provided person |\n| user.person.name.firstName | -- | User name |\n| user.person.name.lastName | -- | User surname |\n| user.person.name.middleName | -- | Second name |\n| user.person.name.spellings | -- | Correct spelling of name and surname (including national language) |\n| user.person.name.alsoKnownAs | -- | Alias names of person under verification |\n| user.person.name.alsoKnownAs.firstName | -- | User's other firstname |\n| user.person.name.alsoKnownAs.lastName | -- | User's other surname |\n| user.person.name.alsoKnownAs.title | -- | User alias |\n| user.person.address.country | POLAND (no unified country name format) | Country of residence of the person |\n| user.person.info | -- | Additional information about the person under verification |\n| user.person.info.gender | MALE | The gender of the user: `MALE`, `FEMALE`, `OTHER` |\n| user.person.info.nationality | Poland (no unified country name format) | User's nationality |\n| user.person.info.birthDate | 1972-10-18 (no unified date format) | Date of birth |\n| user.person.info.deceased | true\u002Ffalse | Information if person is dead |\n| user.person.info.deceaseDate | 2020-10-18 (no unified date format) | Date of death |\n| user.person.info.image | -- | URL to person's picture |\n| user.person.info.roles | -- | Information about the exposed position held by the person |\n| user.person.info.roles[].title | -- | Position held or `Unknown` if position is unknown |\n| user.person.info.roles[].country | (no unified country name format) | The country in which the position was held or `Unknown` if country is unknown |\n| user.person.info.roles[].fromDate | 2014-05-01 (no unified date format) | Start date of tenure |\n| user.person.info.roles[].tillDate | 2019 (no unified date format) | End date of tenure |\n\n\n        ",[106],"AML",{"operationId":108,"method":50,"path":109,"summary":110,"description":111,"tags":112},"getAffordability","\u002Fapi\u002Fconversations\u002F{conversationId}\u002Faffordability\u002Finfo","Retrieving the affordability assessment product information relating to the conversation","\nReturns information about how the affordability assessment validation process is performed for the given conversation ID.\nResults are available when the appropriate callback is received, or when the _affordabilityAssessment_ status reaches _FINISHED_.\n\n## Response Content \n\nDetailed description of returned fields:\n\n| Parameter                             | Example | Description |\n|---------------------------------------| ------- | ----------- |\n|personalInformation| - | A structure representing the set of personal data collected in affordability assessment validation process. |\n|personalInformation.firstName| Jan | Person's first name |\n|personalInformation.lastName|Kowalski| Person's last name |\n|personalInformation.fullName|Jan Kowalski| Person's full name |\n|personalInformation.birthDate|1985-07-20| Person's date of birth |,\n|personalInformation.address| - | A structure representing the set of address related data collected in affordability assessment validation process. |\n|personalInformation.address.text|Testowa 5 00-001 Warszawa Polska| Full adress |\n|personalInformation.address.addressLine|5| House number |\n|personalInformation.address.postalCode|00-001| Postal code |\n|personalInformation.address.city|Warszawa| City |\n|personalInformation.address.country|Polska| Country |\n|accountInformation| - | A structure representing the set of data related with account collected in affordability assessment validation process. |\n|accountInformation.account| - | List of account information. |\n|accountInformation.account.accountNumber|PL12345678901234567890123456| Account number |\n|accountInformation.account.bankName|Bank Millennium|  Bank name |\n|accountInformation.account.accountType|Current| Account type\u002Fname |\n|accountInformation.account.balance|15450.75| Balance|\n|accountInformation.account.currency|EUR| Currency|\n|accountInformation.account.overdraft|true| Account has an overdraft  |\n|sourceOfFundsInformation| - | A structure representing the set of data related with source of funds information collected in affordability assessment validation process. |\n|sourceOfFundsInformation.sourceOfFunds| - | List of sources. |\n|sourceOfFundsInformation.sourceOfFunds.type|Employment| Source type |\n|sourceOfFundsInformation.sourceOfFunds.name|Tech Solutions sp. z o.o.| Name of the institution which is the source of funds. |\n|sourceOfFundsInformation.sourceOfFunds.grossAmount|8500.0| Contract gross amount |\n|sourceOfFundsInformation.sourceOfFunds.netAmount|6120.5| Contract net amount |\n|sourceOfFundsInformation.sourceOfFunds.currency|EUR| Currency|\n|sourceOfFundsInformation.sourceOfFunds.currencyConversion.convertedAmount|4766.94| Net income after conversion to target currency |\n|sourceOfFundsInformation.sourceOfFunds.currencyConversion.targetCurrency|USD| Target currency |\n|sourceOfFundsInformation.sourceOfFunds.currencyConversion.convertedAmount|1.1770| Exchange rate applied by provider |\n|sourceOfFundsInformation.sourceOfFunds.frequency|Monthly| Payment frequency |\n|sourceOfFundsInformation.sourceOfFunds.contractType|Permanent| Type of the contract  |\n|sourceOfFundsInformation.sourceOfFunds.contractEndDate|2099-12-31| Contract end date |\n|sourceOfFundsInformation.sourceOfFunds.partTimePercentage|1| Part of a full-time position covered by the agreement |\n|documentInformation| - | A structure representing the set of data related with document collected in affordability assessment validation process. |\n|documentInformation.type|EmploymentContract| Type of the collected document |\n|documentInformation.number|TS\u002FKOW\u002F2022\u002F11| Number of the collected document |\n|documentInformation.issueDate|2022-11-01| Document issue date |\n|documentInformation.confidenceScore|0.95| Level of trust of the analysed document |\n|documentInformation.trustScore|0.7| Document Trust Index score |\n|documentInformation.periodStart|2023-01-01| Period start date that analysed document refers to  |\n|documentInformation.periodEnd|2023-12-31| Period end date that analysed document refers to |\n|financialAnalysis| - | A structure representing the summary of affordability assessment validation. |\n|financialAnalysis.income|7500| Income summary |\n|financialAnalysis.expenditure|4200.5| Expenditure summary |\n|financialAnalysis.currency|EUR| Currency|\n",[113],"Affordability assessment",{"operationId":115,"method":57,"path":116,"summary":117,"description":118,"tags":119},"cancelAMLSubscription","\u002Fapi\u002Fsubscriptions\u002F{conversationId}\u002Faml","Cancel AML list subscription connected to the conversation","\nStops AML monitoring for given conversation.\n        ",[106],{"operationId":63,"method":50,"path":64,"summary":65,"description":66,"tags":121,"operation":122},[68],{"tags":123,"summary":65,"description":66,"operationId":63,"parameters":124,"responses":132},[68],[125],{"name":126,"in":127,"description":128,"required":129,"schema":130},"conversationId","path","Conversation ID",true,{"type":131},"string",{"200":133,"400":186,"402":289,"403":291,"404":311,"410":331,"500":351},{"description":134,"content":135},"Information available",{"application\u002Fvnd.authologic.v1.1+json":136},{"schema":137},{"type":138,"description":139,"properties":140,"required":184},"object","Information about the metadata collected during the identification process",{"id":141,"list":144},{"type":131,"description":142,"example":143},"Conversation Id","e0c0b3cc-8238-414f-9940-9f14bd1b8693b",{"description":145,"type":138,"properties":146,"required":182},"Metadata list, collected during the identification process",{"media":147},{"type":148,"description":149,"items":150},"array","List of available media files",{"type":138,"description":151,"properties":152,"required":178},"Information about media file",{"id":153,"type":156,"subtype":162,"variant":170,"contentType":175},{"type":131,"description":154,"example":155},"Media id","c9c73416-6f77-11eb-b60f-0240214a8d4b",{"type":131,"description":157,"enum":158,"example":159},"Media type:\n* DOCUMENT - identified person's document\n* FACE - identified person's face\n* REPORT - verification process report\n    ",[159,160,161],"DOCUMENT","FACE","REPORT",{"type":131,"description":163,"enum":164,"example":165},"Media subtype, for example type of the document. Subtype is empty, if the type is FACE.:\n* ID_CARD - identified person's id card\n* DRIVER_LICENSE - identified person's driver license\n* PASSPORT - identified person's passport\n* RESIDENCE_PERMIT - identified person's residence permit\n* UTILITY_BILL - identified person's proof of address\n    ",[165,166,167,168,169],"ID_CARD","DRIVER_LICENSE","PASSPORT","RESIDENCE_PERMIT","UTILITY_BILL",{"type":131,"description":171,"enum":172,"example":174},"Media variant, for example side of the document. Variant is empty, if the type is FACE.:\n* FRONT - front side of the document\n* BACK - back side of the document\n    ",[173,174],"FRONT","BACK",{"type":131,"description":176,"example":177},"Media content type","image\u002Fpng",[179,180,181],"contentType","id","type",[183],"media",[180,185],"list",{"description":187,"content":188},"Bad Request",{"application\u002Fvnd.authologic.v1.1+json":189},{"schema":190,"example":285},{"type":131,"oneOf":191},[192,213,225,237,249,261,273],{"type":138,"properties":193,"required":210},{"status":194,"message":196,"violations":198,"statusDetail":208},{"type":131,"description":195},"Response status",{"type":131,"description":197},"Descriptive error message",{"type":148,"description":199,"items":200},"Validation error list",{"type":138,"properties":201,"required":205},{"field":202,"message":204},{"type":131,"description":203},"Field name",{"type":131,"description":197},[206,207],"field","message",{"type":131,"description":209},"Response status detailed information",[207,211,212],"status","violations",{"type":138,"properties":214,"required":224},{"status":215,"message":216,"violations":217,"statusDetail":223},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":218},{"type":138,"properties":219,"required":222},{"field":220,"message":221},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"type":138,"properties":226,"required":236},{"status":227,"message":228,"violations":229,"statusDetail":235},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":230},{"type":138,"properties":231,"required":234},{"field":232,"message":233},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"type":138,"properties":238,"required":248},{"status":239,"message":240,"violations":241,"statusDetail":247},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":242},{"type":138,"properties":243,"required":246},{"field":244,"message":245},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"type":138,"properties":250,"required":260},{"status":251,"message":252,"violations":253,"statusDetail":259},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":254},{"type":138,"properties":255,"required":258},{"field":256,"message":257},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"type":138,"properties":262,"required":272},{"status":263,"message":264,"violations":265,"statusDetail":271},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":266},{"type":138,"properties":267,"required":270},{"field":268,"message":269},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"type":138,"properties":274,"required":284},{"status":275,"message":276,"violations":277,"statusDetail":283},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":278},{"type":138,"properties":279,"required":282},{"field":280,"message":281},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"status":286,"message":287,"violations":288},"BAD_REQUEST","JSON body has an illegal format [Line: 10, Column: 12]: Unexpected character ('\"' (code 34)): was expecting Array entries.",[],{"description":290},"Exhaustion of the plan or limitations related to non-payment",{"description":292,"content":293},"Permission denied",{"application\u002Fvnd.authologic.v1.1+json":294},{"schema":295,"example":307},{"type":138,"properties":296,"required":306},{"status":297,"message":298,"violations":299,"statusDetail":305},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":300},{"type":138,"properties":301,"required":304},{"field":302,"message":303},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"status":308,"message":309,"violations":310},"FORBIDDEN","Permission denied for strategy: `public:b`.",[],{"description":312,"content":313},"Conversation not found",{"application\u002Fvnd.authologic.v1.1+json":314},{"schema":315,"example":327},{"type":138,"properties":316,"required":326},{"status":317,"message":318,"violations":319,"statusDetail":325},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":320},{"type":138,"properties":321,"required":324},{"field":322,"message":323},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"status":328,"message":329,"violations":330},"NOT_FOUND","Item not found",[],{"description":332,"content":333},"Conversation is unavailable",{"application\u002Fvnd.authologic.v1.1+json":334},{"schema":335,"example":347},{"type":138,"properties":336,"required":346},{"status":337,"message":338,"violations":339,"statusDetail":345},{"type":131,"description":195},{"type":131,"description":197},{"type":148,"description":199,"items":340},{"type":138,"properties":341,"required":344},{"field":342,"message":343},{"type":131,"description":203},{"type":131,"description":197},[206,207],{"type":131,"description":209},[207,211,212],{"status":348,"message":349,"violations":350},"GONE","Conversation is unavailable due to retention policy.",[],{"description":352},"Server side error",{"data":354,"body":355},{},{"type":356,"children":357},"root",[358],{"type":359,"tag":360,"props":361,"children":362},"element","p",{},[363],{"type":364,"value":128},"text",{"data":366,"body":367},{},{"type":356,"children":368},[369],{"type":359,"tag":360,"props":370,"children":371},{},[372],{"type":364,"value":134},{"data":374,"body":375},{},{"type":356,"children":376},[377],{"type":359,"tag":360,"props":378,"children":379},{},[380],{"type":364,"value":187},{"data":382,"body":383},{},{"type":356,"children":384},[385],{"type":359,"tag":360,"props":386,"children":387},{},[388],{"type":364,"value":290},{"data":390,"body":391},{},{"type":356,"children":392},[393],{"type":359,"tag":360,"props":394,"children":395},{},[396],{"type":364,"value":292},{"data":398,"body":399},{},{"type":356,"children":400},[401],{"type":359,"tag":360,"props":402,"children":403},{},[404],{"type":364,"value":312},{"data":406,"body":407},{},{"type":356,"children":408},[409],{"type":359,"tag":360,"props":410,"children":411},{},[412],{"type":364,"value":332},{"data":414,"body":415},{},{"type":356,"children":416},[417],{"type":359,"tag":360,"props":418,"children":419},{},[420],{"type":364,"value":195},{"data":422,"body":423},{},{"type":356,"children":424},[425],{"type":359,"tag":360,"props":426,"children":427},{},[428],{"type":364,"value":199},{"data":430,"body":431},{},{"type":356,"children":432},[433],{"type":359,"tag":360,"props":434,"children":435},{},[436],{"type":364,"value":203},{"data":438,"body":439},{},{"type":356,"children":440},[441],{"type":359,"tag":360,"props":442,"children":443},{},[444],{"type":364,"value":197},{"data":446,"body":447},{},{"type":356,"children":448},[449],{"type":359,"tag":360,"props":450,"children":451},{},[452],{"type":364,"value":209},{"data":454,"body":455},{},{"type":356,"children":456},[457],{"type":359,"tag":360,"props":458,"children":459},{},[460],{"type":364,"value":352},{"data":462,"body":463},{},{"type":356,"children":464},[465,470,475],{"type":359,"tag":360,"props":466,"children":467},{},[468],{"type":364,"value":469},"Returns information about the available metadata that was collected during the identification process.",{"type":359,"tag":360,"props":471,"children":472},{},[473],{"type":364,"value":474},"Detailed description of returned fields:",{"type":359,"tag":476,"props":477,"children":478},"table",{},[479,503],{"type":359,"tag":480,"props":481,"children":482},"thead",{},[483],{"type":359,"tag":484,"props":485,"children":486},"tr",{},[487,493,498],{"type":359,"tag":488,"props":489,"children":490},"th",{},[491],{"type":364,"value":492},"Parameter",{"type":359,"tag":488,"props":494,"children":495},{},[496],{"type":364,"value":497},"Example",{"type":359,"tag":488,"props":499,"children":500},{},[501],{"type":364,"value":502},"Description",{"type":359,"tag":504,"props":505,"children":506},"tbody",{},[507,525,543,560,578,617,683,726],{"type":359,"tag":484,"props":508,"children":509},{},[510,515,520],{"type":359,"tag":511,"props":512,"children":513},"td",{},[514],{"type":364,"value":180},{"type":359,"tag":511,"props":516,"children":517},{},[518],{"type":364,"value":519},"9db8a804-4570-403e-9da6-162e608585e8",{"type":359,"tag":511,"props":521,"children":522},{},[523],{"type":364,"value":524},"Conversation ID.",{"type":359,"tag":484,"props":526,"children":527},{},[528,533,538],{"type":359,"tag":511,"props":529,"children":530},{},[531],{"type":364,"value":532},"letter",{"type":359,"tag":511,"props":534,"children":535},{},[536],{"type":364,"value":537},"-",{"type":359,"tag":511,"props":539,"children":540},{},[541],{"type":364,"value":542},"A structure representing the set of metadata collected from the identity validation process.",{"type":359,"tag":484,"props":544,"children":545},{},[546,551,555],{"type":359,"tag":511,"props":547,"children":548},{},[549],{"type":364,"value":550},"list.media",{"type":359,"tag":511,"props":552,"children":553},{},[554],{"type":364,"value":537},{"type":359,"tag":511,"props":556,"children":557},{},[558],{"type":364,"value":559},"List of information about available multimedia files.",{"type":359,"tag":484,"props":561,"children":562},{},[563,568,573],{"type":359,"tag":511,"props":564,"children":565},{},[566],{"type":364,"value":567},"list.media.id",{"type":359,"tag":511,"props":569,"children":570},{},[571],{"type":364,"value":572},"7a4d1a9f-bdac-4d2c-96a6-bb51fb4ec7c5",{"type":359,"tag":511,"props":574,"children":575},{},[576],{"type":364,"value":577},"The ID of the media file.",{"type":359,"tag":484,"props":579,"children":580},{},[581,586,590],{"type":359,"tag":511,"props":582,"children":583},{},[584],{"type":364,"value":585},"list.media.type",{"type":359,"tag":511,"props":587,"children":588},{},[589],{"type":364,"value":159},{"type":359,"tag":511,"props":591,"children":592},{},[593,595,601,603,608,610,615],{"type":364,"value":594},"Media file type. Possible values: ",{"type":359,"tag":596,"props":597,"children":599},"code",{"className":598},[],[600],{"type":364,"value":159},{"type":364,"value":602}," - document of the authenticated person, ",{"type":359,"tag":596,"props":604,"children":606},{"className":605},[],[607],{"type":364,"value":160},{"type":364,"value":609}," - face of the authenticated person, ",{"type":359,"tag":596,"props":611,"children":613},{"className":612},[],[614],{"type":364,"value":161},{"type":364,"value":616}," - report on the verification process",{"type":359,"tag":484,"props":618,"children":619},{},[620,625,629],{"type":359,"tag":511,"props":621,"children":622},{},[623],{"type":364,"value":624},"list.media.subtype",{"type":359,"tag":511,"props":626,"children":627},{},[628],{"type":364,"value":165},{"type":359,"tag":511,"props":630,"children":631},{},[632,634,639,641,646,648,653,655,660,662,667,669,674,676,681],{"type":364,"value":633},"The sub-type of the media file, such as the type of document. The value is blank if ",{"type":359,"tag":596,"props":635,"children":637},{"className":636},[],[638],{"type":364,"value":181},{"type":364,"value":640}," = ",{"type":359,"tag":596,"props":642,"children":644},{"className":643},[],[645],{"type":364,"value":160},{"type":364,"value":647},". ",{"type":359,"tag":596,"props":649,"children":651},{"className":650},[],[652],{"type":364,"value":165},{"type":364,"value":654}," - identity card of the authenticated person, ",{"type":359,"tag":596,"props":656,"children":658},{"className":657},[],[659],{"type":364,"value":166},{"type":364,"value":661}," - driving license of the authenticated person, ",{"type":359,"tag":596,"props":663,"children":665},{"className":664},[],[666],{"type":364,"value":167},{"type":364,"value":668}," - passport of the authenticated person, ",{"type":359,"tag":596,"props":670,"children":672},{"className":671},[],[673],{"type":364,"value":168},{"type":364,"value":675}," - residence card of the authenticated person, ",{"type":359,"tag":596,"props":677,"children":679},{"className":678},[],[680],{"type":364,"value":169},{"type":364,"value":682}," - proof of address of the authenticated person",{"type":359,"tag":484,"props":684,"children":685},{},[686,691,695],{"type":359,"tag":511,"props":687,"children":688},{},[689],{"type":364,"value":690},"list.media.variant",{"type":359,"tag":511,"props":692,"children":693},{},[694],{"type":364,"value":173},{"type":359,"tag":511,"props":696,"children":697},{},[698,700,705,706,711,712,717,719,724],{"type":364,"value":699},"Variant of the media file, e.g. document page. The value is blank if ",{"type":359,"tag":596,"props":701,"children":703},{"className":702},[],[704],{"type":364,"value":181},{"type":364,"value":640},{"type":359,"tag":596,"props":707,"children":709},{"className":708},[],[710],{"type":364,"value":160},{"type":364,"value":647},{"type":359,"tag":596,"props":713,"children":715},{"className":714},[],[716],{"type":364,"value":173},{"type":364,"value":718}," - front side of the document, ",{"type":359,"tag":596,"props":720,"children":722},{"className":721},[],[723],{"type":364,"value":174},{"type":364,"value":725}," - back side of the document",{"type":359,"tag":484,"props":727,"children":728},{},[729,734,739],{"type":359,"tag":511,"props":730,"children":731},{},[732],{"type":364,"value":733},"list.media.contentType",{"type":359,"tag":511,"props":735,"children":736},{},[737],{"type":364,"value":738},"image \u002F png",{"type":359,"tag":511,"props":740,"children":741},{},[742,744,749,751],{"type":364,"value":743},"The type of media file content. Example values: ",{"type":359,"tag":596,"props":745,"children":747},{"className":746},[],[748],{"type":364,"value":177},{"type":364,"value":750},", ",{"type":359,"tag":596,"props":752,"children":754},{"className":753},[],[755],{"type":364,"value":756},"video\u002Fmp4",{"data":758,"body":759},{},{"type":356,"children":760},[761],{"type":359,"tag":360,"props":762,"children":763},{},[764],{"type":364,"value":142},{"data":766,"body":767},{},{"type":356,"children":768},[769],{"type":359,"tag":360,"props":770,"children":771},{},[772],{"type":364,"value":145},{"data":774,"body":775},{},{"type":356,"children":776},[777],{"type":359,"tag":360,"props":778,"children":779},{},[780],{"type":364,"value":149},1784049390540]