Account Creation
This is one of the services from the registration module used to create new accounts in Finpay. You can use this API to create a valid new account.
Technical Specification
| Environment | Method | URL |
|---|---|---|
| Development | POST | https://snapstag.finnet.co.id/v1.0/registration-account-creation |
| Production | POST | https://snap.finnet.co.id/v1.0/registration-account-creation |
Body Request
| No | Name | Type | Mandatory | Min Length | Max Length | Description |
|---|---|---|---|---|---|---|
| 1 | partnerReferenceNo | String | M | 1 | 64 | Transaction identifier number from partner |
| 2 | phoneNo | String | M | 1 | 16 | Customer phone number to be created |
| 3 | name | String | M | 1 | 128 | Customer name |
Sample Request
{
"partnerReferenceNo": "78912343452347892",
"phoneNo": "08190123436",
"name": "Finnet"
}
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 | partnerReferenceNo | String | O | 1 | 64 | Transaction identifier number from partner |
Sample Response
{
"responseCode": "2000600",
"responseMessage": "Request has been processed successfully",
"partnerReferenceNo": "78912343452347892"
}