Getting the Current Balance Information

To check your balance, make the following HTTP request:

curl -X GET https://api.msndr.net/v1/email/balance \
     -H 'Content-Type: application/json'      \
     -H 'Authorization: Bearer $API_TOKEN'


 

Uses GET method and the /email/balance 

If the request is successful, you will receive the following response

 

{
  "tariff" : {
    "subscribers" : {
      "total" : 1000,
      "available" : 997
    },
    "credits" : 0,
    "expires_at" : 1629273060
  },
  "balance" : 12965.96
}


The json response consists of the following attributes, described below:

Attribute

Description

tariff.subscribers.total

total number of subscribers

tariff.subscribers.available

number of available subscribers

credits

Number of emails

expires_at

Tariff expiry time (timestamp)

balance

Balance sheet amount

 

 

Have you tried Cloud4U services? Not yet?

Visit Website

Try for free

  • 54 Users Found This Useful
Was this answer helpful?

Related Articles

Managing Email Campaigns

Creating an Email Campaign  JSON Data Example for HTTP Request: {...

Managing organizations

Creating organization Example of json data for HTTP request: { "name":"My Organization",...

Sending Messages Via SMTP

Base URL smtp.msndr.net Use port 25 or 587 The use of SSL/TLS encryption is not mandatory....

Getting Information About Templates

You can retrieve the list of templates using the following HTTP request: curl -X GET...

Webhooks Mechanism

The Webhooks mechanism allows you to receive POST requests to a specified URL when events occur...