Inquiry OVO
API to check whether OVO number is valid or invalid.
Path
| Method | Path |
|---|---|
| POST | api/inquiry-ovo |
Test Case
Use below test case in development environment only.
| customer_id | Response Message |
|---|---|
| 082179374778 | SUCCESS |
| Other than 082179374778 | INCORRECT DESTINATION NUMBER |
Request Body
| Attributes | Type | Description | Mandatory |
|---|---|---|---|
| username | String | Your registered phone number | Yes |
| customer_id | String | Customer ID | Yes |
| sign | String | Signature. Value: md5(username+api_key+customer_id) | Yes |
{
"username" : "123123123",
"customer_id" : "082179374778",
"sign" : "df1f2be3585597a5ec102b792555adc9"
}
Response
| Attributes | Type | Description | Mandatory |
|---|---|---|---|
| status | String | Transaction Status. List of status: 1:SUCCESS 2:FAILED | Yes |
| customer_id | String | Customer ID | Yes |
| name | String | Customer name | Yes |
| message | String | Message | Yes |
| rc | String | Response code. See response code list | Yes |
{
"data": {
"status": "1",
"customer_id": "082179374778",
"name": "OVO Txxs",
"message": "SUCCESS",
"rc": "00"
}
}
Live Testing
Request URL
https://prepaid.iak.dev/api/inquiry-ovo
Request Method
Request Header
Content-Type: application/json
Body
Result
Table of Contents