Once a person or business is created, the information can be fetched in order to validate the profile created. When making a request to an API for a user’s information, you typically need to provide a unique identifier UUID. The UUID is generated at the time of registration and is associated with the user’s account.

Endpoint

GET /3p/api/v1/user/{uuid}

Response Object

{
    "status": true,
    "message": "",
    "data": {
        "client_reference_id": "",
        "uuid": "401c79dd-d38c-4c3a-8edf-1afac5914d2d",
        "status": "Approved|On Hold|Rejected",
        "first_name": "Jack",
        "last_name": "Jones",
        "email": null,
        "phone": null,
        "address": {
            "street_address": "20 Elmora Ave",
            "additional_address": "",
            "city": "Elizabeth",
            "state": "NJ",
            "country": "US",
            "zip": "07202"
        },
        "created_at": "2023-06-10 14:15:54",
        "updated_at": "2023-06-10 14:15:54",
        "role": "person"
    },
    "errors": []
}

Errors & Warnings

CodeMessage
401
403
422