Account Unbinding
This is one of the services from the registration module used to unlinked or unbinding the current account that is already binded.
Technical Specification
Environment | Method | URL |
---|---|---|
Development | POST | https://snapstag.finnet.co.id/v1.0/registration-account-unbinding |
Production | POST | https://snap.finnet.co.id/v1.0/registration-account-unbinding |
Body Request
No | Name | Type | Mandatory | Min Length | Max Length | Description |
---|---|---|---|---|---|---|
1 | merchantId | String | M | 1 | 64 | Identifier provided at the time of linking |
2 | referenceNo | String | M | 1 | 64 | Reference number used for unbinding second call |
3 | additionalInfo | Object | M | 1 | 2 | Additional Info |
Sample Request
{
"merchantId":"F7778YIF6A3TC",
"additionalInfo": {
"phoneNo": "080012341373"
}
}
Sample Request (Second Call)
{
"merchantId":"F7778YIF6A3TC",
"referenceNo": "1373010202245923153",
"additionalInfo": {
"phoneNo": "080012341373",
"otp": "696969"
}
}
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 | referenceNo | String | O | 1 | 64 | Transaction identifier on service provider system |
4 | unlinkResult | String | O | 1 | 64 | Result of unlinking/unbinding process. |
Sample Response
{
"responseCode": "2000900",
"responseMessage": "Request has been processed successfully",
"referenceNo": "1373010202245923153",
"unlinkResult": "UNBINDING_PENDING"
}