Configuring SMPP Connection
Last updated
curl --location 'https://<hostname>/integrations/smpp' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"parameters": { "enabled": true, "allowed_ips": "0.0.0.0/0", "dailyLimit": null },
"secret": { "systemID": "aaaaaaaaaaaaaa", "password": null }
}'curl --location 'https://<hostname>/integrations/smpp' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"parameters": { "enabled": true, "allowed_ips": "0.0.0.0/0", "dailyLimit": null },
"secret": { "systemID": null, "password": "0plt0jn2" }
}'curl --location 'https://<hostname>/integrations/smpp' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"parameters": { "enabled": false, "allowed_ips": "1.2.3.4/32,5.5.5.5/32", "dailyLimit": 400 }
}'create:SingleSMS