Operation Information

Retrieve the status and customer data at any time during the operations performed with that authorization.

/customer


Endpoint:

POST {url}/customer

Headers:

Content-Type: application/json

Request body (JSON):

{
    "auth_uuid": "UUID",
    "apiKey": "API_KEY"
}

Response (JSON):

{
    "data":
    {
        "customer":
        {
            "country_code": "ESP",
            "identifier": "12345678Z",
            "b_year": "1967",
            "b_month": "07",
            "b_day": "09",
            "gender": "M",
            "exp_year": "2021",
            "exp_month": "01",
            "exp_day": 11,
            "nationality": "ESP",
            "sn1": "LOPEZ",
            "sn2": "GONZALEZ",
            "sn3": null,
            "n1": "MANUEL",
            "n2": null,
            "n3": null,
            "n4": null,
            "doc_type": "DAYS"
        },
        "status": "Verification KO",
        "metadata":
        {
            "meta1": "example1",
            "meta2": "example2"
        }
    }
}