cURL
curl --request POST \ --url https://api.example.com/api/v1/partner/account-status \ --header 'Content-Type: application/json' \ --header 'X-Partner-ID: <x-partner-id>' \ --header 'X-Signature: <x-signature>' \ --data ' { "phone_number": "<string>", "card_serial": "<string>" } '
Check if subscriber account exists
POST /api/v1/partner/account-status
VULT
0771234567
OLIV0001
Provide either phone_number or card_serial
phone_number
card_serial
{ "success": true, "exists": true, "status": "active" }
const signature = crypto .createHmac('sha256', yourSecretKey) .update(JSON.stringify(requestBody)) .digest('hex');