Download OpenAPI specification:Download
This service allows the user to send SMS to one or more terminals (phones or any SMS-enabled device) from their application.
SMS send service supports only POST HTTP requests. This is used when sending SMS to a mobile phone from an application.
An application wishing to initiate an MT SMS message should use this operation type.
version
required
|
string
API version shall be numbered as 1.0, 2.0 etc. If version is specified in the request, same version must be sent in the response. If version is not specified in the request, the latest version will be specified in the response. |
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
password
required
|
string
Used to authenticate the application originated message against the credentials of the service provider. Encoded, single value. |
message
required
|
string
Content of the message that needs to be sent. Messages over the limit shall be broken up by the platform before sending |
destinationAddresses
required
|
Array of strings
List of destination addresses should be telephone numbers.(tel - for MSISDN). tel:8801812345678. Address can also have the value - tel: all which will in return be a message to the subscribed base of the application at least one should be specified Note : tel might be a masked number depending on the type of application |
sourceAddress |
string
Address of the source. sourceAddress: tel:8801812345678 at least one will be specified |
deliveryStatusRequest |
string
Enum: 0 1
Indicates the need of a Delivery Status Report for the message. 0 - Delivery Report not required 1 - Delivery Report Required |
encoding |
string
Enum: 0 240 245
Encoding scheme used in the message If not specified taken as Text If the encoding type is “Binary” then the message content will be represented as hex encoded. 0 - Text 240 - Flash SMS 245 - Binary SMS |
binaryHeader |
string <hexadecimal>
For advanced type of messages where the binary header shall be sent from the application |
success
{- "version": "1.0",
- "applicationId": "APP_999999",
- "password": "password",
- "message": "Hello",
- "destinationAddresses": [
- "tel:8801812345678"
], - "sourceAddress": "77000",
- "deliveryStatusRequest": "1",
- "encoding": "245",
- "binaryHeader": "526574697265206170706c69636174696f6e20616e642072656c6561736520524b7320696620666f756e642065787069726564"
}
{- "version": "1.0",
- "requestId": "101901031657410007",
- "destinationResponses": [
- {
- "timeStamp": "20190103165801",
- "address": "tel:8801812345678",
- "messageId": "101901031657410007",
- "statusCode": "S1000",
- "statusDetail": "Success"
}
], - "statusCode": "S1000",
- "statusDetail": "Success."
}
This service retrieves the SMS sent to the web application. Receive service returns only a list of SMS messages received since the previous invocation of the method.
version
required
|
string
API version shall be numbered as 1.0, 2.0 etc. If version is specified in the request, same version must be sent in the response. If version is not specified in the request, the latest version will be specified in the response. |
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
sourceAddress
required
|
string
Address of the source. sourceAddress: tel:8801812345678 at least one will be specified |
message
required
|
string
Content of the message sent by the user |
requestId
required
|
string
Uniquely identifies a request within TAP |
encoding
required
|
string
Enum: 0 240 245
Encoding scheme used in the message. If the encoding type is “Binary” then the message content will be represented as hex encoded. 0 - Text 240 - Flash SMS 245 - Binary SMS |
success
{- "version": "1.0",
- "applicationId": "APP_000029",
- "sourceAddress": "tel:8801812345678",
- "message": "string",
- "requestId": "APP_000001",
- "encoding": "0"
}
{- "statusCode": "S1000",
- "statusDetail": "Success."
}
When performing a SendSms Operation if an application has requested for a Delivery Response message from the Message Centre, then TAP will initiate the Delivery Report service to hand over the Delivery Response message to the application. The messageId should be used to match the MT response with the Delivery Report.
destinationAddress
required
|
string
Address of the subscriber |
timeStamp
required
|
string
The timestamp sent from the SMS "yyMMddHHmm" yy – last two digits of the year (00-99) MM – month (01-12) dd – day (01-31) HH – hour (00-23) mm- minute (00-59) |
requestId
required
|
string
Uniquely identifies a request within TAP |
deliveryStatus
required
|
string
Enum: "DELIVERED" "EXPIRED"
"DELETED" "UNDELIVERABLE" "ACCEPTED" "UNKNOWN" "REJECTED"
Enum from TAP to Application: DELIVERED ,EXPIRED ,DELETED ,UNDELIVERABLE ,ACCEPTED ,UNKNOWN ,REJECTED |
success
{- "destinationAddress": "tel:8801812345678",
- "timeStamp": "20120113082110",
- "requestId": "MSG_000111",
- "deliveryStatus": "DELIVERED"
}
{- "statusCode": "S1000",
- "statusDetail": "Success."
}
This service is used when sending USSD messages to a mobile phone from an application.USSD send service supports only POST HTTP requests.
version
required
|
string
API version shall be numbered as 1.0, 2.0 etc. If version is specified in the request, same version must be sent in the response. If version is not specified in the request, the latest version will be specified in the response. |
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
message
required
|
string
Content of the message sent by the application |
password
required
|
string
Used to authenticate the application originated message against the credentials of the service provider. Encoded, single value. |
sessionId
required
|
string
Unique number that USSD Gateway assigns to the application for the duration of the session. This number will be maintained in all the messages throughout a single session. |
ussdOperation
required
|
string
Enum: "mo-init" "mo-cont"
"mt-init" "mt-cont" "mt-fin"
USSD operation mo-cont:TAP to assign for and USSD message originated from subscriber, that comes after a init nmt-init: App to assign when a USSD session is initiated by an application mt-cont: App to assign for any USSD message originated from application, that comes after a init mt-fin: App to assign when session ends in final message Data type will be string where the operation name itself will be used in the parameter value. |
destinationAddress
required
|
string
Destination address should be a telephone number (tel - for MSISDN) Note : tel might be a masked number depending on the type of application |
encoding |
string
Value: 440
Encoding scheme used in the message 440 - Plain ASCII characters |
success
{- "version": "1.0",
- "applicationId": "APP_000001",
- "message": "1. Press One\n 2. Press two\n 3. Press three\n 4. Exit\n",
- "password": "password",
- "sessionId": "1330929317043",
- "ussdOperation": "mt-cont",
- "destinationAddress": "tel: 8801812345678 ",
- "encoding": "440"
}
{- "version": "1.0",
- "requestId": "101901031657410007",
- "timeStamp": "20190103165801",
- "statusCode": "S1000",
- "statusDetail": "Success."
}
This service allows TAP to deliver MO messages to the application using HTTP – based API. The flow of messages is initiated by a MO request sent to an application,TAP will deliver the message to the application as an acknowledgement. Hence it could be either request-response exchange or a request-exception exchange.
Receive USSD request is a MO message which will be sent to the application through bdapps as a delivery request.
version
required
|
string
API version shall be numbered as 1.0, 2.0 etc. If version is specified in the request, same version must be sent in the response. If version is not specified in the request, the latest version will be specified in the response. |
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
message
required
|
string
Content of the message sent by the user |
requestId
required
|
string
Uniquely identifies a request within TAP |
sessionId
required
|
string
Unique number that USSD Gateway assigns to the application for the duration of the session. This number will be maintained in all the messages throughout a single session. |
ussdOperation
required
|
string
Enum: "mo-init" "mo-cont"
"mt-init" "mt-cont" "mt-fin"
USSD operation mo-cont:TAP to assign for and USSD message originated from subscriber, that comes after a init mt-init: App to assign when a USSD session is initiated by an application mt-cont: App to assign for any USSD message originated from application, that comes after a init mt-fin: App to assign when session ends in final message |
sourceAddress
required
|
string
Address of the source. sourceAddress: tel:8801812345678 at least one will be specified |
vlrAddress |
string
VLR(Visitor Location Register) address of the sender |
encoding
required
|
string
Value: 440
Encoding scheme used in the message 440 - Plain ASCII characters |
success
{- "version": "1.0",
- "applicationId": "APP_000029",
- "message": "*141#",
- "requestId": "1330933229901",
- "sessionId": "1330929317043",
- "ussdOperation": "mt-cont",
- "sourceAddress": "tel:8801812345678",
- "vlrAddress": "tel:8801812345678",
- "encoding": "440"
}
{- "statusCode": "S1000",
- "statusDetail": "Success"
}
This service retrieves the account balance and related information of a given subscriber MSISDN. Account information comprises of Account type (Pre paid or Post paid) and Account’s status (Activate or Disable).
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
password
required
|
string
Used to authenticate the application originated message against the credentials of the service provider. Encoded, single value. |
subscriberId
required
|
string
This can be the MSISDN or the username of the subscriber whose account balance is being queried. Note: tel might be a masked number depending on the type of the application Only a single value can be sent per request. |
paymentInstrumentName
required
|
string
Value: "MobileAccount"
The name of the payment instrument. Only a single value can be sent per request. |
accountId |
string
The account of the payment instrument. Only a single value can be sent per request. |
currency |
string
Currency unit of the amount. Only a single value can be sent per request. Only ‘BDT’ is allowed. |
success
{- "applicationId": "APP_999999",
- "password": "95904999aa8edb0c038b3295fdd271de",
- "subscriberId": "8801812345678",
- "paymentInstrumentName": "MobileAccount",
- "accountId": "12345",
- "currency": "BDT"
}
{- "accountType": "Pre Paid",
- "accountStatus": "Active",
- "statusCode": "S1000",
- "statusDetail": "Success.",
- "chargeableBalance": "300.0"
}
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated by the system when provisioning an application. Only a single value can be sent per request. |
password
required
|
string
Used to authenticate the application originated message against the credentials of the service provider. Encoded, single value. |
externalTrxId
required
|
string
This is the transaction ID generated by the application to map the request with the response. This is needed to avoid any conflicts when SP inquires about a transaction. Only a single value can be sent per request. |
subscriberId
required
|
string
This can be the MSISDN of the subscriber to be charged. This is a unique identifier. tel: is for MSISDN Subcriber: tel: 8801812345678 Note: tel might be a masked number depending on the type of the application Only a single value can be sent per request. |
paymentInstrumentName
required
|
string
Value: "MobileAccount"
The name of the payment instrument. Only a single value can be sent per request. |
accountId |
string
The account of the payment instrument. Only a single value can be sent per request. |
amount
required
|
string
Amount to be reserved for charging. Only a single value can be sent per request. |
currency |
string
Currency unit of the amount. Only a single value can be sent per request. Only ‘BDT’ is allowed. |
success
{- "applicationId": "APP_999999",
- "password": "95904999aa8edb0c038b3295fdd271de",
- "externalTrxId": "12345678901234567890123456789012",
- "subscriberId": " 8801812345678",
- "paymentInstrumentName": "MobileAccount",
- "accountId": "12345",
- "amount": "12345",
- "currency": "BDT"
}
{- "externalTrxId": "12345678901234567890123456789012",
- "internalTrxId": "321",
- "referenceId": "12345678",
- "timeStamp": "2012-07-30T12:48:10-0400",
- "statusCode": "S1000",
- "statusDetail": "Success."
}
This service handles user subscription process(subscription/unsubscription)
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
password
required
|
string
Used to authenticate the application originated message against the credentials of the service provider. Encoded, single value. |
subscriberId
required
|
string
This can be the MSISDN of the subscriber to be charged. This is a unique identifier. tel: is for MSISDN Subcriber: tel:8801812345678 Note: tel might be a masked number depending on the type of the application Only a single value can be sent per request. |
action
required
|
string
Enum: 0 1
0 -user unsubscription 1 -user subscription |
success
{- "applicationId": "APP_999999",
- "password": "95904999aa8edb0c038b3295fdd271de",
- "subscriberId": "tel:8801812345678",
- "action": "0"
}
{- "version": "1.0.",
- "statusCode": "S1000",
- "statusDetail": "not registered",
- "subscriptionStatus": "UNREGISTERED."
}
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
password
required
|
string
Used to authenticate the application originated message against the credentials of the service provider. Encoded, single value. |
success
{- "applicationId": "APP_000201",
- "password": "39a8d1cb245029d0560619a2b388669c"
}
{- "baseSize": "0",
- "version": "1.0.",
- "statusCode": "S1000",
- "statusDetail": "Success."
}
This service returns the user subscription status(unregistered,registered)
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
password
required
|
string
Used to authenticate the application originated message against the credentials of the service provider. Encoded, single value. |
subscriberId
required
|
string
This can be the MSISDN of the subscriber to be charged. This is a unique identifier. tel: is for MSISDN Subcriber: tel:8801812345678 Note: tel might be a masked number depending on the type of the application Only a single value can be sent per request. |
success
{- "applicationId": "APP_999999",
- "password": "95904999aa8edb0c038b3295fdd271de",
- "subscriberId": "tel:8801812345678"
}
{- "version": "1.0.",
- "statusCode": "S1000",
- "statusDetail": "Request was successfully processed",
- "subscriptionStatus": "UNREGISTERED."
}
timeStamp
required
|
string
The timestamp sent from the SMS. "yyMMddHHmm" yy – last two digits of the year (00-99) MM – month (01-12) dd – day (01-31) HH – hour (00-23) mm- minute (00-59) |
version
required
|
string
API version shall be numbered as 1.0, 2.0 etc. If version is specified in the request, same version must be sent in the response. If version is not specified in the request, the latest version will be specified in the response. |
applicationId
required
|
string
Used to identify the application. This is a unique identifier generated while provisioning an application. Only a single value can be sent per request. |
password
required
|
string
Used to authenticate the application originated message against the credentials of the service provider. Encoded, single value. |
subscriberId
required
|
string
This can be the MSISDN of the subscriber to be charged. This is a unique identifier. tel: is for MSISDN Subcriber: tel:88018123456785 Note: tel might be a masked number depending on the type of the application Only a single value can be sent per request. |
frequency
required
|
string
Enum: "daily" "weekly" "monthly" "yearly"
Frequency of notifications being sent |
status
required
|
string
Status of the subscription eg:UNREGISTERED,REGISTERED |
success
{- "timeStamp": "20120113082110",
- "version": "1.0",
- "applicationId": "APP_999999",
- "password": "95904999aa8edb0c038b3295fdd271de",
- "subscriberId": "tel:8801812345678",
- "frequency": "monthly",
- "status": "REGISTERED."
}
{- "statusCode": "S1000",
- "statusDetail": "Request was successfully processed"
}
This service is used by the developer to request an OTP for a subscriber's MSISDN. Upon the request, bdapps will generate and send an OTP to the subscriber's MSISDN. This OTP must be entered by the subscriber into the mobile/web application to activate a subscription.
applicationId
required
|
string
ID of the application |
password
required
|
string
Password/API key given to uniquely identify the application |
subscriberId
required
|
string
Mobile number of the end consumer |
applicationHash |
string
Hash string to determine which verification messages to send to your app. |
applicationMetaData |
object
|
success
{- "applicationId": "APP_000375",
- "password": "a07118cda5215fc6d01db5b2ab848edd",
- "subscriberId": "tel:8801812345678",
- "applicationHash": "abcdefgh",
- "applicationMetaData": {
- "client": "MOBILEAPP",
- "device": "Samsung S10",
- "os": "android 8",
}
}
{- "version": "1.0",
- "statusCode": "S1000",
- "referenceNo": "213561321321613",
- "statusDetail": "Success"
}
This service is used by the developer to verify an OTP entered by a subscriber into the application. Upon a successful verification the subscription process of bdapps will be activated.
applicationId
required
|
string
ID of the application |
password
required
|
string
Password/API key given to uniquely identify the application |
referenceNo
required
|
string
Reference number returned with request OTP API |
otp
required
|
string
One time password (OTP) to be used to MSISDN verification for the application |
success
{- "applicationId": "APP_000375",
- "password": "a07118cda5215fc6d01db5b2ab848edd",
- "referenceNo": "213561321321613",
- "otp": "123564"
}
{- "version": "1.0",
- "statusCode": "S1000",
- "subscriptionStatus": "REGISTERED",
- "statusDetail": "Success",
- "subscriberId": "tel:sdfasdfasdfwqerqwtgfgsafgasfgasdfasdfasdfasdfasdfasf"
}