Skip to main content

Update profile

POST 

https://gateway.ixopay.com/api/v3/customerProfiles/:apiKey/updateProfile

Update a customer profile.

The response contains the updated customer data and information about the changed fields.

In case of any errors due to invalid requests, invalid configuration or any other unexpected reason, the system will answer with a generic error response.

Request

Path Parameters

    apiKey stringrequired

    API Key of Connector

Bodyrequired

Update a customer profile

    oneOf
    profileGuidstringrequired

    Customer id assigned by the payment platform.

    Possible values: >= 32 characters and <= 32 characters

    Example: CP-91ec-509a-3899-4f4f-a4ad-67fb
    customerData objectrequired
    firstNamestringrequired

    First name of customer.

    Possible values: <= 50 characters

    Example: Alex
    lastNamestring

    Last name of customer.

    Possible values: <= 50 characters

    Example: Smith
    birthDatestring

    Birthdate of customer.

    RFC 3339 Internet Date/Time Format full-date.

    Example: 1970-01-01
    genderstring

    Gender of the customer.

    Possible values: <= 1 characters, Value must match regular expression ^[MF]$

    Example: M
    billingAddress1string

    Line one of the customer's billing address.

    Possible values: <= 50 characters

    billingAddress2string

    Line two of the customer's billing address.

    Possible values: <= 50 characters

    billingCitystring

    City of the customer's billing address.

    Possible values: <= 50 characters

    billingPostcodestring

    Postal code of the customer's billing address.

    Possible values: <= 16 characters

    billingStatestring

    State of the customer's billing address.

    Possible values: <= 30 characters

    billingCountrystring

    Country of the customer's billing address.

    ISO 3166-1 alpha-2 country code.

    Possible values: <= 2 characters

    billingPhonestring

    Phone number of the billed customer.

    Possible values: <= 20 characters

    Example: +XX 1234567890
    companystring

    Company of the customer.

    Possible values: <= 50 characters

    emailstring

    E-mail address of the customer.

    Possible values: <= 255 characters

    ipAddressstring

    IPv4 or IPv6 address of the customer.

    Possible values: <= 50 characters

    Example: 198.51.100.123
    nationalIdstring

    National id of the customer.

    Possible values: <= 14 characters

    extraData object

    Object containing key-value pairs (string-to-string), to be used by either the upstream Adapter, the Risk Engine etc.

    property name*string
    preferredInstrumentstring

    Possible values: >= 24 characters and <= 24 characters

Responses

Update a customer profile

Schema
    successboolean
    profileGuidstring
    customer object
    _TYPEstring
    billingAddress1string

    Line one of the customer's billing address.

    billingAddress2string

    Line two of the customer's billing address.

    billingCitystring

    City of the customer's billing address.

    billingCountrystring

    Country of the customer's billing address.

    ISO 3166-1 alpha-2 country code.

    billingPhonestring

    Phone number of the billed customer.

    Example: +XX 1234567890
    billingPostcodestring

    Postal code of the customer's billing address.

    billingStatestring

    State of the customer's billing address.

    birthDatestring

    Birthdate of customer.

    RFC 3339 Internet Date/Time Format full-date.

    companystring

    Company of the customer.

    emailstring

    E-mail address of the customer.

    extraData object

    Object containing key-value pairs (string-to-string), to be used by either the upstream Adapter, the Risk Engine etc.

    property name*string
    firstNamestring

    First name of customer.

    Example: Alex
    genderstring

    Gender of the customer.

    ipAddressstring

    IPv4 or IPv6 address of the customer.

    Example: 198.51.100.123
    lastNamestring

    Last name of customer.

    Example: Smith
    nationalIdstring

    National id of the customer.

    property name*any
    changedFieldsstring[]
    property name*any

Authorization: http

name: basicAuthtype: httpscheme: basicdescription: To authenticate API requests, the API username and password must be sent as BASIC Authentication in the `Authorization` header,
as defined in [RFC 7617](https://www.rfc-editor.org/rfc/rfc7617).
To achieve this, the username and password are first concatenated with a `:` (colon) separator,
and the resulting string is then Base64 encoded. Here is an example of how this process works:

1. Suppose the API username is `anyApiUser` and the password is `myPassword`.
2. Concatenate the username and password with a `:` separator: `anyApiUser:myPassword`.
3. Base64 encode the concatenated string: `YW55QXBpVXNlcjpteVBhc3N3b3Jk`.
4. Finally, include the `Authorization` header in the API request with the Base64 encoded string, like so: `Authorization: Basic YW55QXBpVXNlcjpteVBhc3N3b3Jk`.

:::tip
Many programming frameworks will automatically handle the BASIC Authentication process for you once you provide the username and password to the appropriate request object.
:::
curl -L 'https://gateway.ixopay.com/api/v3/customerProfiles/:apiKey/updateProfile' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Basic PHVzZXJuYW1lPjo8cGFzc3dvcmQ+' \
-d '{
"profileGuid": "CP-91ec-509a-3899-4f4f-a4ad-67fb",
"customerData": {
"firstName": "Alex",
"lastName": "Smith",
"birthDate": "1970-01-01",
"gender": "M",
"billingAddress1": "string",
"billingAddress2": "string",
"billingCity": "string",
"billingPostcode": "string",
"billingState": "string",
"billingCountry": "string",
"billingPhone": "+XX 1234567890",
"company": "string",
"email": "string",
"ipAddress": "198.51.100.123",
"nationalId": "string",
"extraData": {}
},
"preferredInstrument": "string"
}'
Request Collapse all
Base URL
https://gateway.ixopay.com/api/v3/customerProfiles
Auth
Parameters
— pathrequired
Body required
{
  "profileGuid": "CP-91ec-509a-3899-4f4f-a4ad-67fb",
  "customerData": {
    "firstName": "Alex",
    "lastName": "Smith",
    "birthDate": "1970-01-01",
    "gender": "M",
    "billingAddress1": "string",
    "billingAddress2": "string",
    "billingCity": "string",
    "billingPostcode": "string",
    "billingState": "string",
    "billingCountry": "string",
    "billingPhone": "+XX 1234567890",
    "company": "string",
    "email": "string",
    "ipAddress": "198.51.100.123",
    "nationalId": "string",
    "extraData": {}
  },
  "preferredInstrument": "string"
}