Paths
/v1/customers/segments/retrieve
To retrieve the customer segment information for a customer.
This API will be used to retrieve customer segment and birthday flag indicator that will be used by channels to prioritize attention to customer according to the segment
Client ID generated during application registration
The Authorization Token received during login
Content-Types that are acceptable for the response
128 bit UUID that you generate for every request
List of acceptable human languages for response
Content-Types that are sent in the request
Country code in 2 character ISO 3166 format
Business code identified durin application registration
Channel where request originated
Session is generated and returned on the first API call of the key exchange (GET e2e call) as response header, which needs to be resent on succesive calls of same session.
Successful operation.
Type | Code | Details |
error | invalidRequest | Missing or invalid Parameters |
Type | Code | Details |
error | unAuthorized | Authorization credentials are missing or invalid |
Type | Code | Details | More Info |
error | accessNotConfigured | The request operation is not configured to access this resource | Channel/Country/Business provided in the request is not supported currently |
Type | Code | Details | More Info |
error | resourceNotFound | The requested resource was not found | Empty resource/resource not found |
Type | Code | Details |
error | businessValidationFailed | Business validation error occured on one or more parameters |
Type | Code | Details |
fatal | serverUnavailable | The request failed due to an internal error/server unavailability |
Definitions
{
"type": "object",
"properties": {
"customerId": {
"description": "Unique identifier of the customer",
"type": "string",
"example": "321116471234",
"maxLength": 12,
"pattern": "^[0-9]*$"
},
"cardNumber": {
"description": "Number Embossed/ Printed on the Card.",
"type": "string",
"example": "4969452123456110",
"maxLength": 16,
"pattern": "^[0-9]*$"
}
}
}
{
"type": "object",
"properties": {
"customer": {
"$ref": "#/definitions/Customer"
}
},
"required": [
"customer"
]
}
{
"type": "object",
"properties": {
"fullName": {
"description": "Full name of the customer",
"type": "string",
"example": "Luis Diaz Salinas"
},
"customerSegment": {
"description": "Segment where the Customer belongs",
"type": "string",
"example": "20"
},
"birthdayTodayFlag": {
"description": "Flag that indicates if it is customer's birthday today or not.",
"type": "boolean",
"example": true
}
},
"required": [
"fullName",
"customerSegment",
"birthdayTodayFlag"
]
}
{
"properties": {
"type": {
"type": "string",
"description": "Invalid - Request did not confirm to the specification and was unprocessed and rejected. Please fix the value and try again",
"enum": [
"error",
"warn",
"invalid",
"fatal"
]
},
"code": {
"description": "Error code which qualifies the error",
"type": "string"
},
"details": {
"description": "Human readable explanation specific to the occurrence of the problem",
"type": "string"
},
"location": {
"description": "The name of the field that resulted in the error",
"type": "string"
},
"moreInfo": {
"description": "URI to human readable documentation or detailed description of the error",
"type": "string"
},
"uuid": {
"description": "128 bit UUID that you generate for every request",
"type": "string"
},
"timestamp": {
"description": "Timestamp of the error",
"type": "string"
}
},
"required": [
"type",
"code"
]
}