Skip to main content

Get Customer Details By Uuid

This

APIrequestfetchesthe{CUSTOMER_UUID}

Authorization

To

access

A

API

returnsa
Endpoint : complete profile for an existing customer. The response includes the customer's personal information and their billing and shipping addresses.


#ndpoint

GET https://demo-api.frontpayment.no/api/v1/connect/customers/details/CSRT1511414842
Method:GET
Authorization:Bearer
Response Structure:
{
    "status_code": 200,
    "status_message": "OK",
    "message": "customerDetailsRetrievedSuccessfully",
    "is_data": true,
    "data": {
        "uuid": "String",
        "type": "String",
        "name": "String",
        "countryCode": "String",
        "msisdn": "String",
        "organizationId": "String|null",
        "personalNumber": "String|null",
        "email": "String",
        "preferredLanguage": "String|null",
        "status": "String",
        "addresses": {
            "billing": {
                "uuid": "String",
                "street": "String",
                "zip": "String",
                "city": "String",
                "country": "String|in:ISO Alpha 2"
            },
            "shipping": {
                "uuid": "String",
                "street": "String",
                "zip": "String",
                "city": "String",
                "country": "String|in:ISO Alpha 2"
            }
        }
    }
}

this endpoint, include a Bearer Token in the Authorization header of your request. You can obtain this token from Frontpayment.

Example Authorization Header: Authorization: Bearer YOUR_FRONTPAID_BEARER_TOKEN

Response

:successful request will return a 200 OK status with the following JSON payload:

{
    "status_code": 200,
    "status_message": "OK",
    "message": "customerDetailsRetrievedSuccessfully",
    "is_data": true,
    "data": {
        "uuid": "CSRT1511414842",
        "type": "Private",
        "name": "Kari Nordmann",
        "countryCode": "+47",
        "msisdn": "00000000",
        "organizationId": null,
        "personalNumber": null,
        "email": "[email protected]",
        "preferredLanguage": null,
        "status": "Active",
        "addresses": {
            "billing": {
                "uuid": "ADRS2208147269",
                "street": "Luramyrveien 65",
                "zip": "4313",
                "city": "Sandnes",
                "country": "NO"
            },
            "shipping": {
                "uuid": "ADRS1016062549",
                "street": "Sjøhusbakken 42",
                "zip": "4313",
                "city": "Stavanger",
                "country": "NO"
            }
        }
    }
}

404 error, it means requested customer with CUSTOMER_UUID could not be found in our system.

{
    "status_code": 404,
    "status_message": "Not Found",
    "message": "customerNotFound",
    "is_data": false,
    "data": null
}

API returns a 510 error, it means something failed on the server side

{
    "status_code": 510,
    "status_message": "Execution Exception Occurred",
    "message": "Something Went Wrong",
    "is_error": true,
    "errors": "Array"
}