Retrieve account details
Retrieves the details of the account.
API Endpoint
GET
https://api.plivo.com/v1/Account/{auth_id}/
Arguments
No arguments need to be passed.
Returns
Returns an Account
object.
Response
HTTP Status Code: 200
{
"account_type": "standard",
"address": "Wayne Enterprises Inc.",
"api_id": "150892a0-922a-11e7-b6f4-061564b78b75",
"auth_id": "MAXXXXXXXXXXXXXXXXXX",
"auto_recharge": false,
"billing_mode": "prepaid",
"cash_credits": "1.80900",
"city": "Gotham",
"name": "Bruce Wayne",
"resource_uri": "/v1/Account/MAXXXXXXXXXXXXXXXXXX/",
"state": "NY",
"timezone": "America/New_York"
}
Example Request
1
2
3
4
5
import plivo
client = plivo.RestClient()
response = client.account.get()
print(response)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# Example for Account Get
#
require 'rubygems'
require 'plivo'
include Plivo
include Plivo::Exceptions
api = RestClient.new("YOUR_AUTH_ID", "YOUR_AUTH_TOKEN")
begin
response = api.account.details
puts response
rescue PlivoRESTError => e
puts 'Exception: ' + e.message
end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Example for Account get
var plivo = require('plivo');
(function main() {
'use strict';
// As the auth_id and auth_token are unspecified, Plivo will fetch them from the PLIVO_AUTH_ID and PLIVO_AUTH_TOKEN environment variables.
var client = new plivo.Client();
client.accounts.get(
).then(function (response) {
console.log(response);
}, function (err) {
console.error(err);
});
})();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**
* Example for Account get
*/
require 'vendor/autoload.php';
use Plivo\RestClient;
use Plivo\Exceptions\PlivoRestException;
$client = new RestClient("YOUR_AUTH_ID", "YOUR_AUTH_TOKEN");
try {
$response = $client->accounts->get(
);
print_r($response);
}
catch (PlivoRestException $ex) {
print_r($ex);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.plivo.api.samples.account;
import java.io.IOException;
import com.plivo.api.Plivo;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.models.account.Account;
import com.plivo.api.models.account.Account;
/**
* Example for Account get
*/
class AccountGet {
public static void main(String [] args) {
Plivo.init();
try {
Account response = Account.getter()
.get();
System.out.println(response);
} catch (PlivoRestException | IOException e) {
e.printStackTrace();
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* Example for Account Get
*/
using System;
using System.Collections.Generic;
using Plivo;
using Plivo.Exception;
namespace PlivoExamples
{
internal class Program
{
public static void Main(string[] args)
{
var api = new PlivoApi("YOUR_AUTH_ID", "YOUR_AUTH_TOKEN");
try
{
var response = api.Account.Get(
);
Console.WriteLine(response);
}
catch (PlivoRestException e)
{
Console.WriteLine("Exception: " + e.Message);
}
}
}
}
1
2
curl -i --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Example for Account get
package main
import "fmt"
import "github.com/plivo/plivo-go"
func main() {
client, err := plivo.NewClient("", "", &plivo.ClientOptions{})
if err != nil {
panic(err)
}
response, err := client.Accounts.Get(
)
if err != nil {
panic(err)
}
fmt.Printf("Response: %#v\n", response)
}
Rate this page
🥳 Thank you! It means a lot to us!
×
Help Us Improve
Thank you so much for rating the page, we would like to get your input for further improvements!
Subscribe to Updates
Thank you for your feedback!