Verify

V1
post /insurance/screening/v1/verify

This endpoint to pre screening process

Download Postman Collection

Request Header
Name Type Required Description
authorization string Required Bearer token
content-type string Required application/json
Request Body
Name Type Required Description
trans_no string Required Unique string that the client can create to track the current request call.

Min length: 10

Max length: 30

citizen_id string Required An identity document (also called ID or colloquially as papers) is any document that may be used to prove a person's identity
name string Required full name e.g. David Ed John
birth_date date Optional Date of birth e.g. 1985-09-27

Format: yyyy-mm-dd

sale_channel string Required Sales channel code to collect transactions.
  • BKO
  • DRO
  • CNN
product string Optional Product name Provided by AXA
package string Optional Package name Provided by AXA
reg_no string Optional Vehicle license plate
call_back object Optional Callback URL is an address that a partner provides for AXA to POST back data
transaction_by guid Required Globally unique identifier value of the user id Provided by AXA
Example request
{
    "trans_no": "SCE:22:0000001",
    "citizen_id": "9999999999999",
    "name": "David Ed John",
    "birth_date": "1986-08-28",
    "sale_channel": "BKO",
    "product": "Travel",
    "package": "Smart Traveller Plus",
    "reg_no": "",
    "transaction_by": "8C890CB2-9FAD-4953-BCC7-E54B9ACE827C",
    "call_back": ""
}
Response
Name Type Description
trans_no string Unique string the client made the request
status string Verify status
  • Pass : Can do any transactions
  • Reject : Any transaction is prohibited
  • Seek Approval : In process of approval Do not take any action until approval is obtained.
message string

Condition:Only use text in the message field when the status "reject" is obtained.

  • ท่านไม่เข้าเงื่อนไขการรับประกันภัยของบริษัท
  • The customer does not comply with the condition in the underwriting guideline.

Example response
{
    "trans_no": "SCE:22:0000001",
    "status": "Reject",
    "message": "The customer does not comply with the condition in the underwriting guideline."
}