Update profile
POSThttps://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
API Key of Connector
- application/json
Bodyrequired
Update a customer profile
- oneOf
- UpdateProfileRequestGuid
- UpdateProfileRequestCustomerIdentification
Customer id assigned by the payment platform.
Possible values: >= 32 characters
and <= 32 characters
CP-91ec-509a-3899-4f4f-a4ad-67fb
customerData objectrequired
Possible values: >= 24 characters
and <= 24 characters
Customer id assigned by you.
Possible values: non-empty
and <= 36 characters
my-id-620fa70b-cc34-4bbb-8d66-3670d3ea24f2
customerData objectrequired
Possible values: >= 24 characters
and <= 24 characters
Responses
- 200
- default
Update a customer profile
- application/json
- Schema
- Example (auto)
- Example
Schema
customer object
{
"success": true,
"profileGuid": "string",
"customer": {
"_TYPE": "string",
"billingAddress1": "string",
"billingAddress2": "string",
"billingCity": "string",
"billingCountry": "string",
"billingPhone": "+XX 1234567890",
"billingPostcode": "string",
"billingState": "string",
"birthDate": "string",
"company": "string",
"email": "string",
"extraData": {},
"firstName": "Alex",
"gender": "string",
"ipAddress": "198.51.100.123",
"lastName": "Smith",
"nationalId": "string"
},
"changedFields": [
"string"
]
}
{
"success": true,
"profileGuid": "CP-0000-0000-0000-0000-0000-0000",
"customerIdentification": "YOUR_CUSTOMER_ID",
"customer": {
"_TYPE": "customerData",
"billingAddress1": "123 Main St.",
"billingAddress2": "Apt. 4B",
"billingCity": "Anytown",
"billingCountry": "US",
"billingPhone": "+XX 1234567890",
"billingPostcode": "12345",
"billingState": "AN",
"birthDate": "1970-01-01",
"company": "Alex's Artisan Goods",
"email": "alex.smith@example.org",
"extraData": [],
"firstName": "Alex",
"gender": "M",
"ipAddress": "198.51.100.123",
"lastName": "Smith",
"nationalId": "1234"
},
"changedFields": [
"firstName",
"lastName"
]
}
Error response
- application/json
- Schema
- Example (auto)
Schema
false
if error.
Error message.
While the errorMessage
field provides useful context for understanding the nature of the error, it's important to note that the content of this message can vary based on specific circumstances.
For consistent and reliable error handling in your application, always base your logic on the errorCode
field, not the errorMessage
.
Error code.
{
"success": true,
"errorMessage": "string",
"errorCode": 0
}
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
- python
- go
- nodejs
- php
- java
- CURL
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"
}'