This site requires javascript to be enabled.

Results for

xxx

Get customer details

POST https://{domainname}/client/v1/{customerId}/products/{paymentProductId}/customerDetails

Products

Through this API you can retrieve details of the payment products that are configured for your account.

Request

Which fields are required depend on the country code. This can determined by performing a getPaymentProduct call and supplying the country code. Each payment product field with the field usedForLookup set to true should be submitted in the request with a valid value.

PayloadGetCustomerDetailsRequest

Input for the retrieval of a customer's details.

Properties
Property Type Required Details
close

Description

The code of the country where the customer should recide.
close

Description

A list of keys with a value used to retreive the details of a customer. Depending on the country code, different keys are required. These can be determined with a getPaymentProduct call and using payment product fields with the property usedForLookup set to true.
close
  • SDK Object type
    KeyValuePair
close

Description

Name of the key or property
close

Description

Value of the key or property

Request example

SDK: Swift

This scenario you will probably use the most

  • import IngenicoConnectKit
    
    let clientSessionId = "<clientSessionId from Create Session>"
    let customerId = "<customerId from Create Session>"
    let baseURL = "<clientApiUrl from Create Session>"
    let assetBaseURL = "<assetUrl from Create Session>"
    let appIdentifier = "<your app name>"
    
    let session = Session(clientSessionId: clientSessionId, customerId: customerId,
                          baseURL: baseURL, assetBaseURL: assetBaseURL, appIdentifier: appIdentifier)
    
    let paymentProductId = "9000"
    
    let countryCode: CountryCode = .SE
    
    var values: [[String:String]] = []
    
    var value1: [String:String] = [:]
    value1["key"] = "fiscalNumber"
    value1["value"] = "012345678901"
    values.append(value1)
    
    session.customerDetails(forProductId: paymentProductId, withLookupValues: values, countryCode: countryCode, success: { customerDetails in
        // Process customer details
    }, failure: { error in
        Macros.DLog(message: "Error while retrieving customer details: \(error.localizedDescription)")
    })
    

Responses

Please find below an overview of the possible responses.

Response 200 - OKGetCustomerDetailsResponse

Personal information and address data related to the data in the request is returned.

Properties
Property Type Required Details
close

Description

The city in which the customer recides.
close

Description

The country in which the customer recides.
close

Description

The email address registered to the customer.
close

Description

The first name of the customer
close

Description

The fiscal number (SSN) for the customer.
close

Description

The code of the language used by the customer.
close

Description

The phone number registered to the customer.
close

Description

The street on which the customer recides.
close

Description

The surname or family name of the customer.
close

Description

The ZIP or postal code for the area in which the customer recides.

Response example

SDK: Swift

This scenario you will probably use the most

  • {
        "fiscalNumber" : "0123456789012",
        "city" : "Stockholm",
        "street" : "Gustav Adolfs torg 22",
        "zip" : "111 52",
        "firstName" : "Gustav",
        "surname" : "Adolfs",
        "emailAddress" : "gustav.adolfs@stockholm.se",
        "phoneNumber" : "0123456789",
        "languageCode" : ""
    }
    

Response 400 - Bad requestErrorResponse

The request is missing required values or no information could be found with the input data.

Properties
Property Type Required Details
close

Description

Unique reference, for debugging purposes, of this error response
close

Description

List of one or more errors
close
  • SDK Object type
    APIError
close

Description

Category the error belongs to. The category should give an indication of the type of error you are dealing with. Possible values:
  • CONNECT\_PLATFORM\_ERROR - indicating that a functional error has occurred in the Connect platform.
  • PAYMENT\_PLATFORM\_ERROR - indicating that a functional error has occurred in the Payment platform.
  • IO\_ERROR - indicating that a technical error has occurred within the Connect platform or between Connect and any of the payment platforms or third party systems.
close

Description

Error code
close

Description

HTTP status code for this error that can be used to determine the type of error
close

Description

ID of the error. This is a short human-readable message that briefly describes the error.
close

Description

Human-readable error message that is not meant to be relayed to customer as it might tip off people who are trying to commit fraud
close

Description

Returned only if the error relates to a value that was missing or incorrect.
Contains a location path to the value as a JSonata query.
Some common examples:
  • a.b selects the value of property b of root property a,
  • a[1] selects the first element of the array in root property a,
  • a[b='some value'] selects all elements of the array in root property a that have a property b with value 'some value'.
close

Description

ID of the request that can be used for debugging purposes

Response example

SDK: Swift

This scenario you will probably use the most

  • {
        "errorId" : "657b10da-d2f9-4088-a948-bf190ef516b1-00000311",
        "errors" : [
            {
                "code" : "1214",
                "id" : "CUSTOMER_DETAILS_NOT_FOUND",
                "message" : "No customer details could be found with the provided data."
            }
        ]
    }
    

Response 404 - Not foundErrorResponse

The paymentProductId you submitted does not exist.

Properties
Property Type Required Details
close

Description

Unique reference, for debugging purposes, of this error response
close

Description

List of one or more errors
close
  • SDK Object type
    APIError
close

Description

Category the error belongs to. The category should give an indication of the type of error you are dealing with. Possible values:
  • CONNECT\_PLATFORM\_ERROR - indicating that a functional error has occurred in the Connect platform.
  • PAYMENT\_PLATFORM\_ERROR - indicating that a functional error has occurred in the Payment platform.
  • IO\_ERROR - indicating that a technical error has occurred within the Connect platform or between Connect and any of the payment platforms or third party systems.
close

Description

Error code
close

Description

HTTP status code for this error that can be used to determine the type of error
close

Description

ID of the error. This is a short human-readable message that briefly describes the error.
close

Description

Human-readable error message that is not meant to be relayed to customer as it might tip off people who are trying to commit fraud
close

Description

Returned only if the error relates to a value that was missing or incorrect.
Contains a location path to the value as a JSonata query.
Some common examples:
  • a.b selects the value of property b of root property a,
  • a[1] selects the first element of the array in root property a,
  • a[b='some value'] selects all elements of the array in root property a that have a property b with value 'some value'.
close

Description

ID of the request that can be used for debugging purposes

Response example

SDK: Swift

This scenario you will probably use the most

  • {
        "errorId" : "657b10da-d2f9-4088-a948-bf190ef516b1-00000312",
        "errors" : [
            {
                "code" : "1070",
                "message" : "UNKNOWN_PAYMENT_PRODUCT_ID"
            }
        ]
    }