Account Binding Inquiry
This is one of the services from the registration module used to validate whether an account already exists or not in Finnet.
Technical Specification
| Environment | Method | URL | 
|---|---|---|
| Development | POST | https://snapstag.finnet.co.id/v1.0/registration-account-inquiry | 
| Production | POST | https://snap.finnet.co.id/v1.0/registration-account-inquiry | 
Body Request
| No | Name | Type | Mandatory | Min Length | Max Length | Description | 
|---|---|---|---|---|---|---|
| 1 | additionalInfo | Object | M | 1 | 1 | Additional Information | 
Sample Request
{
  "additionalInfo": {
    "phoneNo": "080012341234"
  }
}
Body Response
| No | Name | Type | Mandatory | Min Length | Max Length | Description | 
|---|---|---|---|---|---|---|
| 1 | responseCode | Enum | M | 1 | 7 | BI SNAP Response Code. | 
| 2 | responseMessage | String | M | 1 | 150 | BI SNAP Response Message. | 
| 3 | additionalInfo | Object | M | 1 | 1 | Fields that are not mentioned in the contract | 
Sample Response
{
  "responseCode": "2000800",
  "responseMessage": "Request has been processed successfully",
  "additionalInfo": {
    "accountStatus": "LINKED"
  }
}