Delete profile
POST/:apiKey/deleteProfile
Delete a customer profile.
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
Body
required
Delete a customer profile
- DeleteProfileRequestGuid
- DeleteProfileRequestCustomerIdentification
oneOf
Possible values: >= 32 characters
and <= 32 characters
Customer id assigned by the payment platform.
Possible values: non-empty
and <= 36 characters
Customer id assigned by you.
Responses
- 200
- default
Delete a customer profile
- application/json
- Schema
- Example (from schema)
Schema
{
"success": true
}
Error response
- application/json
- Schema
- Example (from schema)
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
}