Allows to obtain the current status of a user. It will return a list of records where each one represents a bank-rout subscription.

POST [API-URL]/dd/get-universe-status-user

Headers

{
	"Content-Type": "application/json"
}

Body

{
    "merchant_code" : "cl_dev_bastian",
    "merchant_api_token" : "5abc6cach592727ab7671e4111bde9c4b8eff0e00f9b7500aca27e36323fd5e1",
    "rut": "200808081"
}

Response OK

(Status: 200)

[
    {
        "rut": "200808081",
        "bankCode": "001",
        "bankName": "Banco de Chile/Edwards-Citi",
        "active": false,
        "merchantCode": "cl_dev_bastian"
    },
    {
        "rut": "200808081",
        "bankCode": "111",
				"bankName": "Banco Santander",
        "active": false,
        "merchantCode": "cl_dev_bastian"
    }
]

Response ERROR

(Status: 401) - Merchant credentials are incorrect

{
    "msg": "Invalid merchant"
}