ANT
  • Introduction
    • Authentication
    • Number
    • Errors
    • Rate Limits
  • ANT API
    • Balance
      • Retrieve balance
    • Sms
      • Marketing SMS
        • Send Marketing SMS
        • Send Bulk Marketing SMS
        • Scheduled Marketing SMS
        • Marketing SMS CallBack
      • 🔥OTP SMS
        • Send OTP SMS
        • OTP SMS CallBack
        • ⭐OTP Backfill Interface
      • Notification SMS
        • Send Notification SMS
        • Send Bulk Notification SMS
        • Scheduled Notification SMS
        • Notification SMS CallBack
    • Voip
      • IVR
        • IVR File Upload
        • IVR Task
        • IVR Callback
      • Call
        • Call the phone
        • Call record callback
    • Phone Number Validation
      • HLR Sever
      • Check Number Status
  • Webhooks
    • Test Webhooks
  • Demo
    • Java Demo
Powered by GitBook
On this page
  1. ANT API
  2. Phone Number Validation

Check Number Status

URL

http://api.antgst.com/call/checkStatus/v1/task

Request Method

POST

Content-Type

application/json

Request Body

Filed
Type
Type
Type

String

Yes

API Key(AccessKey ID+ AccessKey Secret)

countryCode

String

Yes

country code(Example Indonesia 0062,Indian 0091)

phoneList

Array

Yes

phone number list (0091805xxx8424,0091xxxxxxx694)

timing

String

No

scheduled time (format:yyyy-MM-dd HH:mm:ss)

Request Example:

{
	"authSecret": "4d2cadxxxxxxx098a0829xxxxxxf3exxxxx303",
	"countryCode": "0091",
	"phoneList": "0091805xxx8424,0091xxxxxxx694",
	"timing": ""
}

Response Example:

{
	"msg": "SUCCESS",
	"code": 200,
	"result": [
		{
			"phone": "0091805xxx8424",
			"callId": "786dxxxxdexxxxf9710258axxxxxeb8",
			"result": "SUCCESS"
		},
		{
			"phone": "0091xxxxxxx694",
			"callId": "d656xxxxxxc4bffb9xxxxxxce7xxxxx9d7",
			"result": "SUCCESS"
		}
	]
}

Response parameter description:

Filed
Type
Filed

msg

String

response result information

code

String

response status code

result

String

response result parameter

result.number

String

phone number

result.callId

tring

call unique id

result.result

String

response result

PreviousHLR SeverNextWebhooks

Last updated 11 days ago

authSecret